Mercurial > pub > bltoolkit
diff UnitTests/CS/Validation/MinValue.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/UnitTests/CS/Validation/MinValue.cs Thu Mar 27 21:46:09 2014 +0400 @@ -0,0 +1,35 @@ +using System; + +using NUnit.Framework; + +using BLToolkit.Validation; + +namespace Validation +{ + [TestFixture] + public class MinValue + { + class Entity + { + [MinValue(1), Required] + public float Test { get; set; } + } + + [Test] + public void Test() + { + /* + var nullValue = TypeAccessor.GetNullValue; + TypeAccessor.GetNullValue = type => + { + if (type == typeof(float)) + return float.MinValue; + else return nullValue(type); + }; + */ + + var foo = new Entity(); + Assert.AreEqual(false, Validator.IsValid(foo, "Test")); + } + } +}