add type checking

This commit is contained in:
drmDev 2017-04-18 23:40:19 -04:00
parent cb70af6f50
commit 97d60a940c

View file

@ -1,5 +1,6 @@
package org.mage.test.cards.planeswalker;
import mage.constants.CardType;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import mage.counters.CounterType;
@ -60,6 +61,8 @@ public class LilianaTest extends CardTestPlayerBase {
assertPermanentCount(playerA, wShepherd, 1);
assertPermanentCount(playerB, yOx, 1);
assertCounterCount(playerA, liliannaDM, CounterType.LOYALTY, 2);
assertType(wShepherd, CardType.CREATURE, "Zombie"); // should have subtype zombie on top of angel type
assertType(wShepherd, CardType.CREATURE, "Angel");
assertTapped(yOx, true);
}
}