Beispiel #1
0
        static void Main(string[] args)
        {
            var service = new RobotService(new SignalRAdapter());

            service.Run();
            Console.Read();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");

            RobotService robotService = new RobotService("BB", 8);

            RobotManager robotManager = new RobotManager(robotService);

            robotManager.StartRobot();
            robotService.Run();
            robotManager.StartRobot();
        }
Beispiel #3
0
 private void WhenCallRun()
 {
     _subject.Run("test run");
 }