Wrapped land test (special for Eugen :))

This commit is contained in:
magenoxx 2010-12-20 16:40:21 +03:00
parent 4d8d92ed7d
commit b63032b8f3

View file

@ -0,0 +1,19 @@
package org.mage.test;
import mage.Constants;
import org.junit.Test;
import org.mage.test.base.MageAPIExtended;
import static org.mage.test.base.MageAPI.Owner.mine;
public class LandTestExtended extends MageAPIExtended {
@Test
public void testPlayingLandInMainPhase() throws Exception {
addCard("Mountain", Constants.Zone.HAND);
setPhase("Precombat Main", mine);
play("Mountain");
assertBattlefield("Mountain");
assertGraveyardsCount(0);
}
}