예제 #1
0
파일: MyMathTest.cs 프로젝트: temka93/Calc
            public void TestAddNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(45, math.Sub(10, 20));
            }
예제 #2
0
파일: MyMathTest.cs 프로젝트: temka93/Calc
            public void TestSubPositive()
            {
                MyMath math = new MyMath();

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