Ejemplo n.º 1
0
            public void TestSubNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(5, math.Sub(20, 10));
            }
Ejemplo n.º 2
0
            public void TestMultipleNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(150, math.Sub(20, 10));
            }
Ejemplo n.º 3
0
            public void TestSubPositive()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(10, math.Sub(20, 10));
            }