mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
Test and fix for UnblockableAbility not working
This commit is contained in:
parent
be06cb7790
commit
d6f1e8be48
2 changed files with 69 additions and 41 deletions
|
|
@ -2,6 +2,7 @@ package org.mage.test.combat;
|
|||
|
||||
import junit.framework.Assert;
|
||||
import mage.Constants;
|
||||
import mage.counters.CounterType;
|
||||
import mage.game.permanent.Permanent;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
|
@ -203,4 +204,26 @@ public class AttackBlockRestrictionsTest extends CardTestPlayerBase {
|
|||
assertLife(playerA, 17);
|
||||
assertLife(playerB, 20);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests Unblockable
|
||||
*/
|
||||
@Test
|
||||
public void testUnblockable() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerB, "Blighted Agent");
|
||||
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Blighted Agent");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Llanowar Elves");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Birds of Paradise");
|
||||
|
||||
attack(2, playerB, "Blighted Agent");
|
||||
block(2, playerA, "Blighted Agent", "Blighted Agent");
|
||||
block(2, playerA, "Llanowar Elves", "Blighted Agent");
|
||||
block(2, playerA, "Birds of Paradise", "Blighted Agent");
|
||||
|
||||
setStopAt(2, Constants.PhaseStep.END_TURN);
|
||||
execute();
|
||||
|
||||
assertCounterCount(playerA, CounterType.POISON, 1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue