Example #1
0
        public void ListOfIntegersTest_withMultipleElements()
        {
            //arrange
            List <int> inputList = new List <int> {
                1, 2, 3, 4
            };

            //act
            int output = 10;

            //assert
            Assert.AreEqual(output, myOriginal.ListOfIntegers(inputList));
        }