Added method testOnSequenceOfCommands, which is to be implemented

This commit is contained in:
Bokros Bálint 2016-04-25 23:54:15 +02:00
parent 074b8a90f2
commit 5e31be0bdb

View File

@ -297,7 +297,7 @@ public class Tester {
return results;
}
@Test
boolean rotationTest() {
String[] commands = {"loadMap rotationTest\n",
@ -330,4 +330,8 @@ public class Tester {
return results;
}
private boolean testOnSequenceOfCommands(String[] commands, String[] expectedOutputs) {
return true;
}
}