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