Exemplo n.º 1
0
 public void NoParameters_PrintsHelpText()
 {
     using (StringWriter consoleOutput = new StringWriter())
     {
         var command = new StartCommand(new DefaultWorkItemService(new JsonWorkItemStore(new MemoryFileStore()), new LocalDateProvider()), new LocalDateProvider());
         Console.SetOut(consoleOutput);
         command.Run(null);
         Assert.Equal("You are '' on ticket ''\r\n", consoleOutput.ToString());
     }
 }