예제 #1
0
        public void GetCommandSuccessfully_WhenCorrectInput(string input, string expectedCommand)
        {
            var actualResult = InputParser.GetCommandFromInput(input);

            actualResult.Should().BeEquivalentTo(expectedCommand);
        }