mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Added Test for Kalastria Healer
This commit is contained in:
parent
d30e959f43
commit
a21128932b
1 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
package org.mage.test.cards.single.bfz;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
* Created by goesta on 11/02/2017.
|
||||
*/
|
||||
public class KalastriaHealerTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void testThatAllyTokenTriggersEffekt() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Kalastria Healer");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Captain's Claws");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Plains");
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Equip {1}", "Kalastria Healer");
|
||||
attack(1, playerA, "Kalastria Healer");
|
||||
|
||||
setStopAt(1, PhaseStep.END_COMBAT);
|
||||
execute();
|
||||
|
||||
assertLife(playerA, 21);
|
||||
assertLife(playerB, 16);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue