Beispiel #1
0
 static {
   TestableRobotState.beginTeleopMode(); // must be done before anything else ...
 }
Beispiel #2
0
 public MockRobot beginTestMode() {
   TestableRobotState.beginTestMode();
   return this;
 }
Beispiel #3
0
 public MockRobot disableRobot() {
   TestableRobotState.disableRobot();
   return this;
 }
Beispiel #4
0
 public MockRobot beginAutonomousMode() {
   TestableRobotState.beginAutonomousMode();
   return this;
 }
Beispiel #5
0
 public MockRobot enableRobot() {
   TestableRobotState.enableRobot();
   return this;
 }