view Limits/SimpleRoundedPercentageLimitTest.cs @ 7:a2cbd7cb6a5e

Re #24: Create limit objects * Extract out common tests * Make old tests use new abstract * Add tests for new class
author IBBoard <dev@ibboard.co.uk>
date Tue, 20 Oct 2009 19:49:44 +0000
parents 9a860452ced0
children
line wrap: on
line source

//  This file (SimpleRoundedPercentageLimitTest.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 SimpleRoundedPercentageLimitTest : AbstractLimitTest
	{		
		[Test()]
		public void TestSimpleRoundingDownLimit ()
		{
			SimpleRoundedPercentageLimit limit = new SimpleRoundedPercentageLimit(10, false);
			Assert.AreEqual(10, limit.GetLimit(100));
			Assert.AreEqual(1, limit.GetLimit(10));
			Assert.AreEqual(0, limit.GetLimit(1));
		}
		
		public override AbstractLimit GetDefaultLimitObject ()
		{
			return new SimpleRoundedPercentageLimit(10, true);
		}

		public override double GetSize100ExpectedValue ()
		{
			return 10;
		}
		
		public override double GetSize10ExpectedValue ()
		{
			return 1;
		}
		
		public override double GetSize1ExpectedValue ()
		{
			return 1;
		}
		
		public override AbstractLimit GetEqualLimitObject ()
		{
			return new SimpleRoundedPercentageLimit(10, true);
		}
		
		public override AbstractLimit GetUnequalLimitObject ()
		{
			return new SimpleRoundedPercentageLimit(100, true);
		}
	}
}