mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
Failinig test for 'Mikaeus, the Lunarch' card.
This commit is contained in:
parent
cf2e3a4c6a
commit
e196b2bb07
1 changed files with 30 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue