2018-01-04 18:23:28 +01:00
|
|
|
// EV3 specific test functions
|
|
|
|
tests.onEvent(TestEvent.RunSetUp, function() {
|
|
|
|
console.sendToScreen();
|
|
|
|
})
|
|
|
|
tests.onEvent(TestEvent.TestSetUp, function() {
|
2018-02-14 17:56:12 +01:00
|
|
|
motors.stopAll();
|
2018-01-04 18:23:28 +01:00
|
|
|
motors.resetAllMotors();
|
|
|
|
})
|
|
|
|
tests.onEvent(TestEvent.TestTearDown, function() {
|
2018-02-14 17:56:12 +01:00
|
|
|
motors.stopAll();
|
2018-01-04 18:23:28 +01:00
|
|
|
motors.resetAllMotors();
|
|
|
|
})
|