Mercurial > repos > IBBoard.Tests
view Limits/NumericSizeConstrainedLimitTest.cs @ 4:a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
* Add initial tests
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 06 Oct 2009 18:53:07 +0000 |
parents | |
children | 9a860452ced0 |
line wrap: on
line source
// This file (NumericSizeConstrainedLimitTest.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 and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. using System; using NUnit.Framework; namespace IBBoard.Limits { [TestFixture()] public class NumericSizeConstrainedLimitTest { [Test()] public void TestSizeConstrainedLimits() { NumericSizeConstrainedLimit limit = new NumericSizeConstrainedLimit(10); Assert.AreEqual(10, limit.GetLimit(100)); Assert.AreEqual(10, limit.GetLimit(10)); Assert.AreEqual(1, limit.GetLimit(1)); } } }