mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[AFC] added passing and failing tests for Belt of Giant Strength (#8347)
This commit is contained in:
parent
7b1e3fae7b
commit
1b36053b17
1 changed files with 60 additions and 0 deletions
|
@ -0,0 +1,60 @@
|
|||
package org.mage.test.cards.single.afc;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.permanent.Permanent;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class BeltOfGiantStrengthTest extends CardTestPlayerBase {
|
||||
|
||||
private static final String belt = "Belt of Giant Strength";
|
||||
private static final String gigantosauras = "Gigantosaurus";
|
||||
|
||||
@Test
|
||||
public void testWithManaAvailable() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Forest", 10);
|
||||
addCard(Zone.BATTLEFIELD, playerA, belt);
|
||||
addCard(Zone.BATTLEFIELD, playerA, gigantosauras);
|
||||
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Equip", gigantosauras);
|
||||
|
||||
setStrictChooseMode(true);
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertIsAttachedTo(playerA, belt, gigantosauras);
|
||||
Assert.assertTrue(
|
||||
"All Forests should be untapped",
|
||||
currentGame
|
||||
.getBattlefield()
|
||||
.getAllActivePermanents()
|
||||
.stream()
|
||||
.filter(permanent -> permanent.hasSubtype(SubType.FOREST, currentGame))
|
||||
.noneMatch(Permanent::isTapped)
|
||||
);
|
||||
}
|
||||
|
||||
@Ignore // currently failing, need to fix
|
||||
@Test
|
||||
public void testWithoutManaAvailable() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, belt);
|
||||
addCard(Zone.BATTLEFIELD, playerA, gigantosauras);
|
||||
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Equip", gigantosauras);
|
||||
|
||||
setStrictChooseMode(true);
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertIsAttachedTo(playerA, belt, gigantosauras);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue