mirror of
https://github.com/correl/mage.git
synced 2024-12-24 03:00:14 +00:00
Failing test for Exalted
This commit is contained in:
parent
1f06ad6dce
commit
baac791a02
1 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
package org.mage.test.cards.abilities.keywords;
|
||||
|
||||
import mage.Constants;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
/**
|
||||
* @author magenoxx_at_gmail.com
|
||||
*/
|
||||
public class ExaltedTest extends CardTestPlayerBase {
|
||||
|
||||
/**
|
||||
* Tests multiple exalted
|
||||
*/
|
||||
@Test
|
||||
public void testBeingBlocked() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerB, "Sublime Archangel");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerB, "Llanowar Elves");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerB, "Elite Vanguard", 2);
|
||||
|
||||
attack(2, playerB, "Llanowar Elves");
|
||||
|
||||
setStopAt(2, Constants.PhaseStep.END_COMBAT);
|
||||
execute();
|
||||
|
||||
// 1/1 and +4/+4
|
||||
assertLife(playerA, 15);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue