added an additional subtype verification test

This commit is contained in:
Evan Kranzler 2021-07-08 18:46:42 -04:00
parent 9072abbbcc
commit 07e1dff10c
2 changed files with 20 additions and 0 deletions

View file

@ -1254,6 +1254,20 @@ public class VerifyCardDataTest {
expected.removeIf(subtypesToIgnore::contains);
}
for (SubType subType : card.getSubtype()) {
if (!subType.isCustomSet() && !subType.canGain(card)) {
String cardTypeString = card
.getCardType()
.stream()
.map(CardType::toString)
.reduce((a, b) -> a + " " + b)
.orElse("");
fail(card, "subtypes", "card has subtype "
+ subType.getDescription() + " (" + subType.getSubTypeSet() + ')'
+ " that doesn't match its card type(s) (" + cardTypeString + ')');
}
}
if (!eqSet(actual, expected)) {
fail(card, "subtypes", actual + " != " + expected);
}