Failinig test for 'Mikaeus, the Lunarch' card.

This commit is contained in:
magenoxx 2012-05-08 19:12:44 +04:00
parent cf2e3a4c6a
commit e196b2bb07

View file

@ -0,0 +1,30 @@
package org.mage.test.cards.cost.variable;
import mage.Constants;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
/**
*
* @author noxx
*/
public class MikaeusTheLunarchTest extends CardTestPlayerBase {
/**
* Tests that Mikaeus, the Lunarch enters with X counters
*/
@Test
public void testCard() {
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains", 5);
addCard(Constants.Zone.HAND, playerA, "Mikaeus, the Lunarch");
castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Mikaeus, the Lunarch");
setStopAt(1, Constants.PhaseStep.BEGIN_COMBAT);
execute();
assertPermanentCount(playerA, "Mikaeus, the Lunarch", 1);
}
}