Merge pull request #7071 from Dilnu/Haruspex

Create a test to verify Grim Haruspex's ability.
This commit is contained in:
LevelX2 2020-09-18 13:19:33 +02:00 committed by GitHub
commit e1ab14e0f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,25 @@
package org.mage.test.cards.facedown;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
public class GrimHaruspexTest extends CardTestPlayerBase {
@Test
public void testMorphed() {
addCard(Zone.HAND, playerA, "Wrath of God");
addCard(Zone.HAND, playerA, "Grim Haruspex");
addCard(Zone.BATTLEFIELD, playerA, "Plains", 7);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Grim Haruspex");
setChoice(playerA, "Yes"); // cast it face down as 2/2 creature
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Wrath of God");
setStopAt(1, PhaseStep.END_COMBAT);
execute();
assertGraveyardCount(playerA, "Grim Haruspex", 1);
assertHandCount(playerA, 0);
}
}