Exemplo n.º 1
0
        public void Div()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(12, math.Div(-48, -4));
        }
Exemplo n.º 2
0
        public void Mul()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(12, math.Mul(-3, -4));
        }