static int Main(string[] args) { var herald = new NullInformationHerald(); var app = new ShowOrStartApp(herald); return(app.Run(args)); }
public void Run_CalledWithAQuestionMark_DisplaysHelpAndReturnsOK() { int retVal = SUT.Run(new[] { "?" }); // assert MockHerald.Received().ShowHelp(); retVal.ShouldBe(ShowOrStartApp.EXIT_OK); }
static int Main(string[] args) { var herald = new NullInformationHerald(); var app = new ShowOrStartApp(herald); return app.Run(args); }