Ejemplo n.º 1
0
        public void Add()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(31, math.Add(20, 11));
        }
Ejemplo n.º 2
0
        public void Sub()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(10, math.Sub(20, 10));
        }
Ejemplo n.º 3
0
 public void Setup()
 {
     myMath = new MyMath();
 }