added extraZPMs test to Tester.java

This commit is contained in:
Hegedus Fanni 2016-04-25 20:30:38 +02:00
parent 1bf5df9b08
commit 68c0dd96e3

View File

@ -98,5 +98,17 @@ public class Tester {
return results;
}
@Test
boolean extraZPM(){
String[] commands = {"loadMap testExtraZPMs\n",
"listZPMs\n",
"move O\n",
"move O\n",
"listZPMs\n"};
String[] expectedOutputs = {};
return testOnSequenceOfCommands(commands, expectedOutputs);
}
}