use of pcgen.cdom.processor.HitDieStep in project pcgen by PCGen.
the class HitDieTokenTest method testUnparseZeroSteps.
@Test
public void testUnparseZeroSteps() throws PersistenceLayerException {
try {
primaryProf.put(ObjectKey.HITDIE, new HitDieStep(0, new HitDie(12)));
assertBadUnparse();
} catch (IllegalArgumentException e) {
// Good here too :)
}
}
Aggregations