1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

Create test for Kalitas, Bloodchief of Ghet (ZEN)

This commit is contained in:
ciaccona007 2017-07-28 23:36:12 -04:00
parent f8ac5e64a6
commit 59ef1c0def

View file

@ -0,0 +1,25 @@
package org.mage.test.cards.single;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
public class KalitasBloodchiefOfGhetTest extends CardTestPlayerBase {
@Test
public void testTokenCreatedOnlyIfTargetDies() {
addCard(Zone.BATTLEFIELD, playerA, "Kalitas, Bloodchief of Ghet", 1);
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 3);
addCard(Zone.BATTLEFIELD, playerA, "Rest in Peace", 1);
addCard(Zone.BATTLEFIELD, playerB, "Gray Ogre", 1);
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{B}{B}{B}", "Gray Ogre");
setStopAt(3, PhaseStep.BEGIN_COMBAT);
execute();
assertPermanentCount(playerA, 5);
assertPermanentCount(playerB, 0);
}
}