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

            SetHeaderCommand setHeaderCommand = new SetHeaderCommand();
            string           result           = setHeaderCommand.GetHelpSummary(shellState, httpState);

            Assert.Equal(setHeaderCommand.Description, result);
        }