public void TestSubNegative() { MyMath math = new MyMath(); Assert.AreEqual(5, math.Sub(20, 10)); }
public void TestMultipleNegative() { MyMath math = new MyMath(); Assert.AreEqual(150, math.Sub(20, 10)); }
public void TestSubPositive() { MyMath math = new MyMath(); Assert.AreEqual(10, math.Sub(20, 10)); }