/* * Copyright (c) 2007 Tom Parker <thpr@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ package plugin.lsttokens.deity; import org.junit.Test; import pcgen.cdom.enumeration.ListKey; import pcgen.cdom.enumeration.Pantheon; import pcgen.core.Deity; import pcgen.rules.persistence.CDOMLoader; import pcgen.rules.persistence.token.CDOMPrimaryToken; import plugin.lsttokens.testsupport.AbstractTypeSafeListTestCase; import plugin.lsttokens.testsupport.CDOMTokenLoader; public class PantheonTokenTest extends AbstractTypeSafeListTestCase<Deity, Pantheon> { static PantheonToken token = new PantheonToken(); static CDOMTokenLoader<Deity> loader = new CDOMTokenLoader<Deity>( Deity.class); @Override public char getJoinCharacter() { return '|'; } @Override public Class<Deity> getCDOMClass() { return Deity.class; } @Override public CDOMLoader<Deity> getLoader() { return loader; } @Override public CDOMPrimaryToken<Deity> getToken() { return token; } @Test public void dummyTest() { // Just to get Eclipse to recognize this as a JUnit 4.0 Test Case } @Override public Pantheon getConstant(String string) { return Pantheon.getConstant(string); } @Override public ListKey<Pantheon> getListKey() { return ListKey.PANTHEON; } @Override public boolean isClearDotLegal() { return false; } @Override public boolean isClearLegal() { return true; } @Override protected boolean requiresPreconstruction() { return true; } }