view Limits/AbsoluteNumericLimitTest.cs @ 32:4d9c0cc7c4a3

* Add app.config to try to make VS.Net happy no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Wed, 26 Jan 2011 20:23:19 +0000
parents a2cbd7cb6a5e
children
line wrap: on
line source

// This file (AbsoluteNumericLimitTest.cs) is a part of the IBBoard.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;
using NUnit.Framework;

namespace IBBoard.Limits
{
	[TestFixture()]
	public class AbsoluteNumericLimitTest : AbstractLimitTest
	{
		private const int LIMIT = 10;

		public override AbstractLimit GetDefaultLimitObject ()
		{
			return new AbsoluteNumericLimit(LIMIT);
		}
		
		public override double GetSize100ExpectedValue ()
		{
			return LIMIT;
		}
		
		public override double GetSize10ExpectedValue ()
		{
			return LIMIT;
		}
		
		public override double GetSize1ExpectedValue ()
		{
			return LIMIT;
		}
		
		public override AbstractLimit GetEqualLimitObject ()
		{
			return new AbsoluteNumericLimit(LIMIT);
		}
		
		public override AbstractLimit GetUnequalLimitObject ()
		{
			return new AbsoluteNumericLimit(100);
		}
	}
}