/* * 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.editcontext.testsupport; import org.junit.Test; import pcgen.cdom.base.CDOMObject; import pcgen.persistence.PersistenceLayerException; public abstract class AbstractFormulaIntegrationTestCase<T extends CDOMObject> extends AbstractIntegrationTestCase<T> { @Test public void testRoundRobinSimple() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "1"); commit(modCampaign, tc, "2"); completeRoundRobin(tc); } @Test public void testRoundRobinOverwrite() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "1"); commit(testCampaign, tc, "2"); completeRoundRobin(tc); } @Test public void testRoundRobinIdentical() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "Identical"); commit(modCampaign, tc, "Identical"); completeRoundRobin(tc); } @Test public void testRoundRobinFormula() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "1"); commit(modCampaign, tc, "Formula"); completeRoundRobin(tc); } public abstract boolean isNegativeAllowed(); @Test public void testRoundRobinNegative() throws PersistenceLayerException { if (isNegativeAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "Formula"); commit(modCampaign, tc, "-2"); completeRoundRobin(tc); } } @Test public void testRoundRobinNoSet() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); emptyCommit(testCampaign, tc); commit(modCampaign, tc, "ModForm"); completeRoundRobin(tc); } @Test public void testRoundRobinNoReset() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "StartForm"); emptyCommit(modCampaign, tc); completeRoundRobin(tc); } }