public void Mul02() { MyMath txt = new MyMath(); Assert.IsNotNull(txt.Mul(5, 5) == 25); }
public void Div01() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Div(15, 5), 3); }
public void Sub03() { MyMath txt = new MyMath(); Assert.AreNotEqual(txt.Sub(14, 7), 6); }
public void Mul01() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Mul(5, 5), 25); }
public void Sub02() { MyMath txt = new MyMath(); Assert.IsFalse(txt.Sub(14, 7) == 6); }
public void Sub01() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Sub(14, 7), 7); }
public void Add03() { MyMath txt = new MyMath(); Assert.IsTrue(txt.Add(7, 7) == 14); }
public void Add02() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Add(7, 7), 14); }
public void Add01() { MyMath txt = new MyMath(); Assert.AreEqual(txt.Add(5, 5), 10); }