use of pcgen.cdom.enumeration.ListKey in project pcgen by PCGen.
the class AddLevelTokenTest method testUnparseGenericsFail.
@SuppressWarnings("unchecked")
@Test
public void testUnparseGenericsFail() throws PersistenceLayerException {
ListKey objectKey = ListKey.ADD_LEVEL;
primaryProf.addToListFor(objectKey, new Object());
try {
getToken().unparse(primaryContext, primaryProf);
fail();
} catch (ClassCastException e) {
// Yep!
}
}
use of pcgen.cdom.enumeration.ListKey in project pcgen by PCGen.
the class DeityWeapTokenTest method testUnparseGenericsFail.
@SuppressWarnings("unchecked")
@Test
public void testUnparseGenericsFail() throws PersistenceLayerException {
ListKey objectKey = ListKey.DEITYWEAPON;
primaryProf.addToListFor(objectKey, new Object());
try {
getToken().unparse(primaryContext, primaryProf);
fail();
} catch (ClassCastException e) {
// Yep!
}
}
Aggregations