Bari.Core.Test.Commands.InfoTest.PrintsAllTestProjectNames C# (CSharp) Method

PrintsAllTestProjectNames() private method

private PrintsAllTestProjectNames ( ) : void
return void
        public void PrintsAllTestProjectNames()
        {
            var cmd = kernel.Get<ICommand>("info");
            cmd.Run(suite, new string[0]);

            output.Messages.Select(x => x.Trim()).Should().Contain("*Name:* test1");
            output.Messages.Select(x => x.Trim()).Should().Contain("*Name:* test2");
        }