diff --git a/cicaprojekt/Tester.java b/cicaprojekt/Tester.java index a6f0c6f..1ac9d66 100644 --- a/cicaprojekt/Tester.java +++ b/cicaprojekt/Tester.java @@ -44,6 +44,17 @@ public class Tester { } } + void shootONeillsGun(String param) { + switch (param) { + case "B" : + oneill.shootStargate(Stargate.blueStargate); + break; + case "Y" : + oneill.shootStargate(Stargate.yellowStargate); + break; + } + } + /* custom Test annotation */ @Target(ElementType.METHOD) // it's for methods @Retention(RetentionPolicy.RUNTIME) // we want to retain annotations in runtime @@ -177,7 +188,24 @@ public class Tester { System.out.println("Sikeres!"); else System.out.println("Sikertelen!"); - return results; + return results; + } + + @Test + boolean replicatorPosition(){ + String[] commands = {"loadMap testReplicatorPosition\n", + "move O\n"}; + + String[] expectedOutputs = {}; + + return testOnSequenceOfCommands(commands, expectedOutputs); + + System.out.print("replicatorPosition: "); + if(results) + System.out.println("Sikeres!"); + else System.out.println("Sikertelen!"); + + return results; } }