Example #1
0
 public void add()
 {
     ASP2.Function f = new ASP2.Function();
     Assert.AreEqual(f.add(5, 5), 10);
 }
Example #2
0
 public void testSubtract()
 {
     ASP2.Function f = new ASP2.Function();
     Assert.AreEqual(f.subtract(20, 10), 10);
 }