1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 17:00:11 -09:00

Add assertActivePlayer test method.

This commit is contained in:
Quercitron 2016-10-31 02:17:24 +03:00
parent 59f09dbf0c
commit 43581cafa3

View file

@ -917,6 +917,10 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
Assert.assertEquals("Actions left are not equal: ", count, player.getActionCount());
}
public void assertActivePlayer(TestPlayer player) {
Assert.assertEquals("message", currentGame.getState().getActivePlayerId(), player.getId());
}
public Permanent getPermanent(String cardName, Player player) {
return getPermanent(cardName, player.getId());
}