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

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

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