2011-02-10 15:38:44 +00:00
|
|
|
package org.mage.test.clientside;
|
2010-12-20 13:40:21 +00:00
|
|
|
|
|
|
|
import mage.Constants;
|
|
|
|
import org.junit.Test;
|
2011-02-10 15:38:44 +00:00
|
|
|
import org.mage.test.clientside.base.MageAPIExtended;
|
2010-12-20 13:40:21 +00:00
|
|
|
|
2011-02-10 15:38:44 +00:00
|
|
|
import static org.mage.test.clientside.base.MageAPI.Owner.mine;
|
2010-12-20 13:40:21 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|