From 93201b53f7680b2bf6a65c4877cc22cb7f25a3b4 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Mon, 2 Jul 2012 00:35:01 +0400 Subject: [PATCH] updated test --- .../cards/continuous/GoblinBushwhackerTest.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/GoblinBushwhackerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/GoblinBushwhackerTest.java index aed73a998d1..63ef964b469 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/GoblinBushwhackerTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/GoblinBushwhackerTest.java @@ -9,6 +9,21 @@ import org.mage.test.serverside.base.CardTestPlayerBase; */ public class GoblinBushwhackerTest extends CardTestPlayerBase { + @Test + public void testKicker() { + addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain", 2); + addCard(Constants.Zone.HAND, playerA, "Goblin Bushwhacker"); + addCard(Constants.Zone.BATTLEFIELD, playerA, "Elite Vanguard"); + + castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Goblin Bushwhacker"); + + setStopAt(1, Constants.PhaseStep.BEGIN_COMBAT); + execute(); + + assertPermanentCount(playerA, "Elite Vanguard", 1); + assertPowerToughness(playerA, "Elite Vanguard", 3, 1); + } + /** * Tests doesn't work in library and in hand */