Exemplo n.º 1
0
        public void sub()
        {
            Mymath math = new Mymath();

            Assert.AreEqual(1, math.sub(2, 1), "Test sub pass");
        }
Exemplo n.º 2
0
        public void  add()
        {
            Mymath math = new Mymath();

            Assert.AreEqual(3, math.Add(2, 1), "Test add pass");
        }