示例#1
0
		public void boundries_norm()
		{
			T_Norm norm = new min_max();
			Assert.Throws<ArgumentException>(delegate{norm.norm(-0.3, 0.5);}, "");
			Assert.Throws<ArgumentException>(delegate{norm.norm(0.0, -0.4);}, "");
			Assert.Throws<ArgumentException>(delegate{norm.norm(-0.1, -0.4);}, "");
		}
示例#2
0
		public void normal_norm()
		{
			T_Norm norm = new min_max();
			Assert.AreEqual(0.5, norm.norm(0.7, 0.5), "");
			Assert.AreEqual(0.5, norm.norm(0.5, 0.8), "");
		}