boolean testScalesAndGates() added to Tester

This commit is contained in:
ericnerdo 2016-04-25 20:32:36 +02:00
parent 68c0dd96e3
commit 9e2a21f967

View File

@ -100,6 +100,7 @@ public class Tester {
}
@Test
<<<<<<< 68c0dd96e3304b4048de58acf99e10ab3da9abd5
boolean extraZPM(){
String[] commands = {"loadMap testExtraZPMs\n",
"listZPMs\n",
@ -111,4 +112,23 @@ public class Tester {
return testOnSequenceOfCommands(commands, expectedOutputs);
}
=======
boolean testScalesAndGates(){
String[] commands = {"loadMap testScalesAndGates\n",
"boxLift O\n",
"rotate O L\n",
"boxDrop O\n"};
String[] expectedOutputs = {"door open"};
boolean results = testOnSequenceOfCommands(commands, expectedOutputs);
System.out.print("testScalesAndGates: ");
if(results)
System.out.println("Sikeres!");
else System.out.println("Sikertelen!");
return results;
}
>>>>>>> boolean testScalesAndGates() added to Tester
}