mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed comments in the recent test committed
This commit is contained in:
parent
97e5f6aa16
commit
11bda039f5
1 changed files with 8 additions and 1 deletions
|
@ -8,10 +8,14 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
|
|||
/**
|
||||
* @author noxx
|
||||
*
|
||||
* Card: When Mausoleum Guard dies, put two 1/1 white Spirit creature tokens with flying onto the battlefield.
|
||||
* Card: When Oblivion Ring enters the battlefield, exile another target nonland permanent.
|
||||
* When Oblivion Ring leaves the battlefield, return the exiled card to the battlefield under its owner's control.
|
||||
*/
|
||||
public class OblivionRingTest extends CardTestPlayerBase {
|
||||
|
||||
/**
|
||||
* When Oblivion Ring enters the battlefield, exile another target nonland permanent.
|
||||
*/
|
||||
@Test
|
||||
public void testFirstTriggeredAbility() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains", 3);
|
||||
|
@ -29,6 +33,9 @@ public class OblivionRingTest extends CardTestPlayerBase {
|
|||
assertPermanentCount(playerB, "Frost Titan", 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* When Oblivion Ring leaves the battlefield, return the exiled card to the battlefield under its owner's control.
|
||||
*/
|
||||
@Test
|
||||
public void testSecondTriggeredAbility() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains", 3);
|
||||
|
|
Loading…
Reference in a new issue