void Start()
 {
     MoverRobot    = Robots[0];
     TesterRobot   = Robots[1];
     RouterRobot   = Robots[2];
     PackagerRobot = Robots[3];
 }
예제 #2
0
 public void ExecuteFunctionsTest()
 {
     FactoryRobot.ExecuteFunctions();
 }
예제 #3
0
        public void TurnTest()
        {
            double angle = 3.0;

            FactoryRobot.Move(angle);
        }
예제 #4
0
 public void BeepTest()
 {
     FactoryRobot.Beep();
 }
예제 #5
0
        public void MoveTest()
        {
            double distance = 10.0;

            FactoryRobot.Move(distance);
        }