Beispiel #1
0
        public void RunningSumOf1dArrayTest(int[] givenArr, int[] expectedArr)
        {
            //Action
            int[] outputArr = Easy.RunningSum(givenArr);

            //Assert
            expectedArr.ToExpectedObject().ShouldEqual(outputArr);
        }