Exemple #1
0
        public void GetHelpSummary_ReturnsDescription()
        {
            ArrangeInputs(parseResultSections: string.Empty,
                          out MockedShellState shellState,
                          out HttpState httpState,
                          out ICoreParseResult _);

            RunCommand runCommand = new RunCommand(new MockedFileSystem());
            string     result     = runCommand.GetHelpSummary(shellState, httpState);

            Assert.Equal(Strings.RunCommand_HelpSummary, result);
        }