mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
test for Issue 317
This commit is contained in:
parent
441aefee22
commit
f5e9ead285
1 changed files with 22 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue