Example #1
0
        public void AddTwoIntegers()
        {
            // Given this input to the method
            int sum = _calculator.mathAddition(54, 29);

            // We are asserting that the output should be this
            Assert.Equal(sum, 83);
        }