test for Issue 317

This commit is contained in:
Loki 2011-11-17 17:20:37 +04:00
parent 441aefee22
commit f5e9ead285

View file

@ -0,0 +1,22 @@
package org.mage.test.cards.targets.sacrifice;
import mage.Constants;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestBase;
public class GethsVerdict extends CardTestBase {
@Test
public void test() {
addCard(Constants.Zone.BATTLEFIELD, playerA, "Swamp");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Swamp");
addCard(Constants.Zone.HAND, playerA, "Geth's Verdict");
addCard(Constants.Zone.BATTLEFIELD, playerB, "Copper Myr");
castSpell(playerA, "Geth's Verdict");
execute();
assertPermanentCount(playerB, "Copper Myr", 0);
assertLife(playerB, 19);
}
}