mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Some changes to test.
This commit is contained in:
parent
bf8b0f81ca
commit
224d735f30
1 changed files with 9 additions and 4 deletions
|
@ -13,6 +13,14 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||||
*/
|
*/
|
||||||
public class AEtherFigmentTest extends CardTestPlayerBase {
|
public class AEtherFigmentTest extends CardTestPlayerBase {
|
||||||
|
|
||||||
|
/*
|
||||||
|
AEther Figment {1}{U}
|
||||||
|
Creature - Illusion
|
||||||
|
1/1
|
||||||
|
Kicker {3} (You may pay an additional as you cast this spell.)
|
||||||
|
AEther Figment is unblockable.
|
||||||
|
If AEther Figment was kicked, it enters the battlefield with two +1/+1 counters on it.
|
||||||
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testEnteringWithCounters() {
|
public void testEnteringWithCounters() {
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
|
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
|
||||||
|
@ -26,9 +34,6 @@ public class AEtherFigmentTest extends CardTestPlayerBase {
|
||||||
assertLife(playerA, 20);
|
assertLife(playerA, 20);
|
||||||
assertLife(playerB, 20);
|
assertLife(playerB, 20);
|
||||||
assertPermanentCount(playerA, "AEther Figment", 1);
|
assertPermanentCount(playerA, "AEther Figment", 1);
|
||||||
|
assertPowerToughness(playerA, "AEther Figment", 3, 3);
|
||||||
Permanent aetherFigment = getPermanent("AEther Figment", playerA.getId());
|
|
||||||
Assert.assertEquals(3, aetherFigment.getPower().getValue());
|
|
||||||
Assert.assertEquals(3, aetherFigment.getToughness().getValue());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue