added an additional test

This commit is contained in:
Evan Kranzler 2020-09-03 18:25:39 -04:00
parent f0df4267a3
commit 86446f4977

View file

@ -108,4 +108,20 @@ public class PartyCountTest extends CardTestPlayerBase {
assertLife(playerA, 28);
}
@Test
public void testChangelings() {
addCard(Zone.BATTLEFIELD, playerA, "Plains", 5);
addCard(Zone.BATTLEFIELD, playerA, "Impostor of the Sixth Pride", 4);
addCard(Zone.HAND, playerA, shpd);
castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerA, shpd);
setStopAt(1, PhaseStep.END_TURN);
setStrictChooseMode(true);
execute();
assertAllCommandsUsed();
assertLife(playerA, 28);
}
}