public TheToyRobotSimulatorTests()
 {
     _theRobot            = new TheRobot();
     _robotCommandHandler = new RobotInteractiveCommandHandler(new string[] {});
 }
예제 #2
0
 public RobotInteractiveCommandHandler(string[] switches)
 {
     _rob      = new TheRobot();
     _switches = switches;
     ShowWelcomeMessages();
 }