view 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
line wrap: on
line source

//  This file (MockIniFileWithOneSectionAndOneLine.cs) is a part of IBBoard.Ini.Tests project and is copyright 2009 IBBoard
// 
//  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.
// 

using System;

namespace IBBoard.Ini
{
	public class MockIniFileWithOneSectionAndOneLine : IniFile
	{
		public static readonly string SECTION_NAME = MockIniSectionWithOneLine.SECTION_NAME;
		public static readonly string KEY_NAME = MockIniSectionWithOneLine.KEY_NAME;
		public static readonly string VALUE = MockIniSectionWithOneLine.VALUE;
		
		public MockIniFileWithOneSectionAndOneLine()
		{
			AddSection(new MockIniSectionWithOneLine());
		}
	}
}