Пример #1
0
        public void Part2ReturnsExpectedResult(string[] puzzleInput, int expectedResult)
        {
            // Arrange
            InstructionParser sut = new InstructionParser();

            // Act
            int stepsToEscape = sut.Part2(puzzleInput);

            // Assert
            Assert.That(stepsToEscape, Is.EqualTo(expectedResult));
        }