Exemplo n.º 1
0
        public void PositiveNumbersHandedIn_AddingNumbers_ReturnsEqual()
        {
            //arrange
            int input1 = 5, input2 = 5, expected = 15;
            //act
            int result = _testLogic.AddingNumbers(input1, input2);

            //assert
            Assert.AreEqual(expected, result);
        }