mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Merge pull request #3606 from ingmargoudt/issue-3604
added Mycosynth Lattice test for #3604
This commit is contained in:
commit
5cfef7f481
1 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
package org.mage.test.cards.mana;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import mage.counters.CounterType;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class MycosynthLatticeTest extends CardTestPlayerBase {
|
||||
|
||||
|
||||
@Test
|
||||
public void testMycoSynthLatticeWithCrystallineCrawler(){
|
||||
String crawler = "Crystalline Crawler";
|
||||
String lattice = "Mycosynth Lattice";
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerA, lattice);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Plains");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Swamp");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Mountain");
|
||||
addCard(Zone.HAND, playerA, crawler);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, crawler);
|
||||
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
|
||||
execute();
|
||||
|
||||
assertCounterCount(playerA, crawler, CounterType.P1P1, 4);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue