added testBoxes test in Tester.java

This commit is contained in:
Hegedus Fanni 2016-04-25 21:29:30 +02:00
parent 41b132df46
commit 56c58ffcde

View File

@ -155,7 +155,7 @@ public class Tester {
String[] expectedOutputs = {}; String[] expectedOutputs = {};
return testOnSequenceOfCommands(commands, expectedOutputs); boolean results = testOnSequenceOfCommands(commands, expectedOutputs);
System.out.print("testExtraZPMs: "); System.out.print("testExtraZPMs: ");
if(results) if(results)
@ -230,7 +230,7 @@ public class Tester {
return results; return results;
} }
@Test @Test
boolean timeUpTest(){ boolean timeUpTest(){
String[] commands = {"loadMap timeUpTest\n"}; String[] commands = {"loadMap timeUpTest\n"};
@ -247,19 +247,33 @@ public class Tester {
} }
@Test @Test
boolean rotationTest(){ boolean rotationTest() {
String[] commands = {"loadMap rotationTest\n", String[] commands = {"loadMap rotationTest\n",
"Rotate O L\n", "Rotate O L\n",
"Rotate O R\n"}; "Rotate O R\n"};
String[] expectedOutputs = {}; String[] expectedOutputs = {};
boolean results = testOnSequenceOfCommands(commands, expectedOutputs); boolean results = testOnSequenceOfCommands(commands, expectedOutputs);
System.out.print("rotationTest: "); System.out.print("rotationTest: ");
}
@Test
boolean testBoxes(){
String[] commands = {"loadMap testBoxes\n",
"boxLift\n",
"boxDrop\n"};
String[] expectedOutputs = {"boc3 lifted\n",
"box3 dropped\n"};
boolean results = testOnSequenceOfCommands(commands, expectedOutputs);
System.out.print("testBoxes: ");
if(results) if(results)
System.out.println("Sikeres!"); System.out.println("Sikeres!");
else System.out.println("Sikertelen!"); else System.out.println("Sikertelen!");
return results; return results;
} }
} }