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

DoesNotPrintSourceCountForEmptySourceSets() private method

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

            output.Messages.Select(x => x.Trim()).Should().NotContain("`fs`\t0 files");
        }