view UnitTests/CS/Validation/MinValue.cs @ 8:a34cfdde80d6

removed strong signing added FrameworkPathOverride for linux builds
author cin
date Wed, 29 Nov 2017 12:43:52 +0300
parents f990fcb411a9
children
line wrap: on
line source

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"));
		}
	}
}