mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[KHM] added test for Giant Ox
This commit is contained in:
parent
c5cc99144d
commit
13ce938fd0
1 changed files with 13 additions and 1 deletions
|
@ -10,7 +10,6 @@ import org.junit.Test;
|
||||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
// http://magic.wizards.com/en/articles/archive/feature/kaladesh-mechanics-2016-09-02
|
// http://magic.wizards.com/en/articles/archive/feature/kaladesh-mechanics-2016-09-02
|
||||||
|
@ -79,4 +78,17 @@ public class CrewTest extends CardTestPlayerBase {
|
||||||
assertNotType("Smuggler's Copter", CardType.CREATURE);
|
assertNotType("Smuggler's Copter", CardType.CREATURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGiantOx() {
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Giant Ox");
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Colossal Plow");
|
||||||
|
|
||||||
|
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Crew");
|
||||||
|
|
||||||
|
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||||
|
execute();
|
||||||
|
|
||||||
|
assertTapped("Giant Ox", true);
|
||||||
|
assertType("Colossal Plow", CardType.CREATURE, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue