Razorverge Thicket should enter untapped only if you control two or less lands.

This commit is contained in:
Toby Lawrence 2015-10-25 17:58:20 -04:00
parent 40d85ecbff
commit d42e5fed78
2 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,39 @@
package org.mage.test.cards.conditional;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
/**
* @author tobz
*/
public class RazorvergeThicketTest extends CardTestPlayerBase {
@Test
public void testEntersTappedForThreeLands() {
addCard(Zone.BATTLEFIELD, playerA, "Island", 3);
addCard(Zone.HAND, playerA, "Razorverge Thicket");
playLand(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Razorverge Thicket");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertTapped("Razorverge Thicket", true);
}
@Test
public void testEntersUntappedForTwoLands() {
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
addCard(Zone.HAND, playerA, "Razorverge Thicket");
playLand(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Razorverge Thicket");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertTapped("Razorverge Thicket", false);
}
}