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

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

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