Beispiel #1
0
        public void TestSubtractMethod()
        {
            var first  = 10;
            var second = 7;
            var diff   = first - second - 1;

            var lib = new Azure();

            Assert.AreEqual(diff, lib.Subtract(first, second), "Subtract did not correctly find the difference of the 2 values.");
        }