mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Update HourglassOfTheLostTest.java
This commit is contained in:
parent
8e2276b10e
commit
909f627f14
1 changed files with 8 additions and 5 deletions
|
|
@ -4,7 +4,6 @@ import mage.constants.PhaseStep;
|
|||
import mage.constants.Zone;
|
||||
import mage.counters.CounterType;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.player.TestPlayer;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
|
|
@ -15,7 +14,7 @@ public class HourglassOfTheLostTest extends CardTestPlayerBase {
|
|||
/**
|
||||
* {@link mage.cards.h.HourglassOfTheLost HourglassOfTheLost} {2}{U}
|
||||
*/
|
||||
private static final String hourglass = "Hourglass Of The Lost";
|
||||
private static final String hourglass = "Hourglass of the Lost";
|
||||
|
||||
@Test
|
||||
public void test_Simple() {
|
||||
|
|
@ -23,14 +22,18 @@ public class HourglassOfTheLostTest extends CardTestPlayerBase {
|
|||
skipInitShuffling();
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerA, hourglass);
|
||||
addCard(Zone.GRAVEYARD, playerA, "Birds of Paradise"); // Tribal Enchantment
|
||||
|
||||
addCard(Zone.GRAVEYARD, playerA, "Birds of Paradise"); // Tribal Enchantment
|
||||
|
||||
activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add {W}");
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
execute();
|
||||
assertCounterCount(playerA, hourglass, CounterType.TIME,1);
|
||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T},");
|
||||
|
||||
showAvailableAbilities("Abilities: ", 3, PhaseStep.PRECOMBAT_MAIN, playerA);
|
||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}, Remove X");
|
||||
setChoice(playerA, "X=1");
|
||||
setStopAt(3, PhaseStep.POSTCOMBAT_MAIN);
|
||||
|
||||
execute();
|
||||
assertExileCount(playerA, 1);
|
||||
assertGraveyardCount(playerA, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue