示例#1
0
            public void TestMulNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(45, math.Mul(10, 20));
            }
示例#2
0
            public void TestMulPositive()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(200, math.Mul(10, 20));
            }