forked from External/mage
Started Lightning Helix test.
This commit is contained in:
parent
b63032b8f3
commit
3c4afdb475
1 changed files with 29 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package org.mage.test;
|
||||
|
||||
import mage.Constants;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.base.MageAPI;
|
||||
import org.mage.test.bdd.and.And;
|
||||
import org.mage.test.bdd.given.Given;
|
||||
import org.mage.test.bdd.then.Then;
|
||||
import org.mage.test.bdd.when.When;
|
||||
|
||||
import static org.mage.test.base.MageAPI.Owner.mine;
|
||||
|
||||
public class LightningHelixTest extends MageAPI {
|
||||
|
||||
@Test
|
||||
public void testPlayTargetOpponent() throws Exception {
|
||||
Given.I.have.a.card("Lightning Helix");
|
||||
//And.battlefield.has("Mountain","Plains");
|
||||
And.phase.is("Precombat Main", mine);
|
||||
//And.phase.is("End of Turn", ai);
|
||||
//And.lifes(20,20);
|
||||
When.I.play("Lightning Helix");
|
||||
//Then.my.life(23);
|
||||
//And.ai.life(17);
|
||||
//And.my.graveyard.has("Lightning Helix");
|
||||
//And.ai.graveyard.empty();
|
||||
Then.graveyards.empty();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue