public void Mul02() { MyMath txt = new MyMath(); Assert.IsNotNull(txt.Mul(2, 2)); }
public void Mul01() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Mul(2, 2), 4); }