Example #1
0
      public void testsum()
      {
          var mathBL = new MathBL();
          int result = mathBL.sum(2, 3);

          Assert.IsTrue(result == 7);
      }
Example #2
0
        public int TestSum()
        {
            var math   = new MathBL();
            int result = math.sum(100, 100);

            return(result);
        }