From 11bda039f5dfdb5294725b6d5a56194fe78ad7e7 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Sun, 25 Mar 2012 23:24:07 +0400 Subject: [PATCH] fixed comments in the recent test committed --- .../org/mage/test/cards/triggers/OblivionRingTest.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/OblivionRingTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/OblivionRingTest.java index 028456eb09d..f03bc814d1b 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/OblivionRingTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/OblivionRingTest.java @@ -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);