finised all creaturetypes

This commit is contained in:
igoudt 2017-05-20 00:22:08 +02:00
parent 19db21c672
commit 8ab4f5b454
206 changed files with 641 additions and 375 deletions

View file

@ -1,6 +1,7 @@
package org.mage.test.multiplayer;
import mage.constants.PhaseStep;
import mage.constants.SubType;
import mage.constants.Zone;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterLandPermanent;
@ -35,7 +36,7 @@ public class SimpleGameTest extends CardTestMultiPlayerBase {
assertLife(playerD, 20);
FilterPermanent filterPermanent = new FilterLandPermanent();
filterPermanent.add(new SubtypePredicate("Forest"));
filterPermanent.add(new SubtypePredicate(SubType.FOREST));
List<Permanent> forestCards = currentGame.getBattlefield().getAllActivePermanents(filterPermanent, currentGame);
Assert.assertEquals(4, forestCards.size());
}