1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

test for ai bug not attacking

This commit is contained in:
magenoxx 2011-06-06 22:34:03 +04:00
parent fb4c0ceccf
commit b636f4d342

View file

@ -0,0 +1,36 @@
package org.mage.test.serverside.ai;
import mage.Constants;
import mage.filter.Filter;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestBase;
/**
* Reproduces bug when AI didn't attack with one of the creatures.
*
* @ayratn
*/
public class BugDoesntAttackWithKnightTest extends CardTestBase {
@Test
public void testVersusInfectCreature() throws Exception {
useRedDefault();
addCard(Constants.Zone.HAND, computerA, "Zephyr Sprite");
addCard(Constants.Zone.HAND, computerA, "Island");
addCard(Constants.Zone.HAND, computerA, "Rupture Spire");
setLife(computerB, 1);
setStopOnTurn(4);
execute();
// life:ComputerB:0
assertLife(computerB, 0);
// turn:1
assertTurn(3);
// result:won
assertResult(computerA, GameResult.WON);
// life:ComputerA:20
assertLife(computerA, 20);
}
}