/* * 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 AbstractBigDecimalIntegrationTestCase<T extends CDOMObject> extends AbstractIntegrationTestCase<T> { public abstract boolean isZeroAllowed(); public abstract boolean isNegativeAllowed(); public abstract boolean isPositiveAllowed(); @Test public void testArchitectire() throws PersistenceLayerException { assertTrue(isPositiveAllowed() || isNegativeAllowed()); } @Test public void testRoundRobinSimple() throws PersistenceLayerException { if (isPositiveAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "1.11"); commit(modCampaign, tc, "2.4"); completeRoundRobin(tc); } } @Test public void testRoundRobinSimpleOverwrite() throws PersistenceLayerException { if (isPositiveAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "1.11"); commit(testCampaign, tc, "2.4"); completeRoundRobin(tc); } } @Test public void testRoundRobinNegativeOverwrite() throws PersistenceLayerException { if (isNegativeAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "-1.11"); commit(testCampaign, tc, "-2.4"); completeRoundRobin(tc); } } @Test public void testRoundRobinIdentical() throws PersistenceLayerException { if (isPositiveAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "2.4"); commit(modCampaign, tc, "2.4"); completeRoundRobin(tc); } } @Test public void testRoundRobinZero() throws PersistenceLayerException { if (isZeroAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); if (isNegativeAllowed()) { commit(testCampaign, tc, "-4.5"); } else { commit(testCampaign, tc, "1.2"); } commit(modCampaign, tc, "0"); completeRoundRobin(tc); } } @Test public void testRoundRobinNegative() throws PersistenceLayerException { if (isNegativeAllowed()) { verifyCleanStart(); TestContext tc = new TestContext(); commit(testCampaign, tc, "-1"); commit(modCampaign, tc, "-2"); completeRoundRobin(tc); } } @Test public void testRoundRobinNoSet() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); emptyCommit(testCampaign, tc); if (isPositiveAllowed()) { commit(modCampaign, tc, "2.718"); } else if (isNegativeAllowed()) { commit(modCampaign, tc, "-3.09"); } completeRoundRobin(tc); } @Test public void testRoundRobinNoReset() throws PersistenceLayerException { verifyCleanStart(); TestContext tc = new TestContext(); if (isPositiveAllowed()) { commit(testCampaign, tc, "3.7"); } else if (isNegativeAllowed()) { commit(testCampaign, tc, "-2.3"); } emptyCommit(modCampaign, tc); completeRoundRobin(tc); } }