Don't in GameSimulatorTest - since that isn't being tested.

This commit is contained in:
Myrd
2017-01-08 22:53:37 +00:00
parent 88634bb0a0
commit 8ccb126dc5

View File

@@ -56,7 +56,12 @@ public class SimulationTestCase extends TestCase {
}
protected GameSimulator createSimulator(Game game, Player p) {
return new GameSimulator(new SimulationController(new Score(0)), game, p);
return new GameSimulator(new SimulationController(new Score(0)) {
@Override
public boolean shouldRecurse() {
return false;
}
}, game, p);
}
protected Card findCardWithName(Game game, String name) {