Beispiel #1
0
        public void AddTest()
        {
            // MyMath m = new myMathDLL();
            // Above doesn't work while class is static

            Assert.IsTrue(MyMath.Add(6, 7).Equals(13));
        }
Beispiel #2
0
 public void AddTest2()
 {
     Assert.AreEqual(MyMath.Add(-5, -5), -10);
 }