public void boundries_norm() { T_Norm norm = new sum_prod(); 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);}, ""); }
public void normal_norm() { T_Norm norm = new sum_prod(); Assert.AreEqual(0.35, norm.norm(0.7, 0.5), ""); Assert.AreEqual(0.4, norm.norm(0.5, 0.8), ""); }