annotate MockIniFileWithOneSectionAndOneLine.cs @ 12:0be17f8102ed

* Fix unit test paths
author IBBoard <dev@ibboard.co.uk>
date Wed, 07 Nov 2012 20:22:20 +0000
parents eac501db18e7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file (MockIniFileWithOneSectionAndOneLine.cs) is a part of IBBoard.Ini.Tests project and is copyright 2009 IBBoard
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4 //
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using System;
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 namespace IBBoard.Ini
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 {
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 public class MockIniFileWithOneSectionAndOneLine : IniFile
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11 {
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 public static readonly string SECTION_NAME = MockIniSectionWithOneLine.SECTION_NAME;
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 public static readonly string KEY_NAME = MockIniSectionWithOneLine.KEY_NAME;
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 public static readonly string VALUE = MockIniSectionWithOneLine.VALUE;
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 public MockIniFileWithOneSectionAndOneLine()
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 {
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 AddSection(new MockIniSectionWithOneLine());
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 }
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 }
eac501db18e7 Re #11 - Add getter methods to IniFile and IniSection
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 }