public void should_exit()
        {
            _inputOutputStub.AddKeys(ConsoleKey.Enter);

            _launcher.Run();

            VerifyCommandCalled(Command.DisplayNegativeCount, 0);
            VerifyCommandCalled(Command.FilterNegative, 0);
            VerifyCommandCalled(Command.DisplayOriginalContent, 0);
        }
Example #2
0
        public static void Main(string[] args)
        {
            var launcher = new ContentProcessorLauncher();

            launcher.Run();
        }