mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[NEO] added test for Hotshot Mechanic
This commit is contained in:
parent
82b67a2548
commit
972ad38e85
1 changed files with 23 additions and 0 deletions
|
@ -24,6 +24,8 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
private static final String plow = "Colossal Plow";
|
||||
private static final String kotori = "Kotori, Pilot Prodigy";
|
||||
private static final String crusher = "Irontread Crusher";
|
||||
private static final String mechanic = "Hotshot Mechanic";
|
||||
private static final String express = "Aradara Express";
|
||||
|
||||
@Test
|
||||
public void crewBasicTest() {
|
||||
|
@ -38,6 +40,7 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
|
||||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertTappedCount(lion, true, 2);
|
||||
assertPowerToughness(playerA, caravan, 5, 5);
|
||||
|
@ -58,6 +61,7 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
|
||||
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertTappedCount(fanatic, true, 1);
|
||||
assertPowerToughness(playerA, copter, 3, 3);
|
||||
|
@ -83,6 +87,7 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
// Only crewed vehicles have card type creature
|
||||
assertNotType(copter, CardType.CREATURE);
|
||||
|
@ -97,6 +102,7 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertTapped(ox, true);
|
||||
assertType(plow, CardType.CREATURE, true);
|
||||
|
@ -111,9 +117,26 @@ public class CrewTest extends CardTestPlayerBase {
|
|||
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertTapped(kotori, true);
|
||||
assertType(crusher, CardType.ARTIFACT, true);
|
||||
assertType(crusher, CardType.CREATURE, SubType.VEHICLE);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHotshotMechanic() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, mechanic);
|
||||
addCard(Zone.BATTLEFIELD, playerA, express);
|
||||
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Crew 4");
|
||||
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertTapped(mechanic, true);
|
||||
assertType(express, CardType.ARTIFACT, true);
|
||||
assertType(express, CardType.CREATURE, SubType.VEHICLE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue