use of plugin.lsttokens.editcontext.testsupport.TestContext in project pcgen by PCGen.
the class DefineStatIntegrationTest method testRoundRobinSimpleLock.
@Test
public void testRoundRobinSimpleLock() throws PersistenceLayerException {
verifyCleanStart();
TestContext tc = new TestContext();
commit(testCampaign, tc, "LOCK|INT|15");
commit(modCampaign, tc, "LOCK|STR|15");
completeRoundRobin(tc);
}
use of plugin.lsttokens.editcontext.testsupport.TestContext in project pcgen by PCGen.
the class DefineStatIntegrationTest method testRoundRobinRemoveLock.
@Test
public void testRoundRobinRemoveLock() throws PersistenceLayerException {
verifyCleanStart();
TestContext tc = new TestContext();
commit(testCampaign, tc, "LOCK|STR|4");
commit(modCampaign, tc, "LOCK|STR|15");
completeRoundRobin(tc);
}
use of plugin.lsttokens.editcontext.testsupport.TestContext in project pcgen by PCGen.
the class DescIsPiIntegrationTest method testRoundRobinRemove.
@Test
public void testRoundRobinRemove() throws PersistenceLayerException {
verifyCleanStart();
TestContext tc = new TestContext();
commit(testCampaign, tc, "YES");
commit(modCampaign, tc, "NO");
completeRoundRobin(tc);
}
use of plugin.lsttokens.editcontext.testsupport.TestContext in project pcgen by PCGen.
the class DescIsPiIntegrationTest method testRoundRobinYesSet.
@Test
public void testRoundRobinYesSet() throws PersistenceLayerException {
verifyCleanStart();
TestContext tc = new TestContext();
emptyCommit(testCampaign, tc);
commit(modCampaign, tc, "YES");
completeRoundRobin(tc);
}
use of plugin.lsttokens.editcontext.testsupport.TestContext in project pcgen by PCGen.
the class DescIsPiIntegrationTest method testRoundRobinSimple.
@Test
public void testRoundRobinSimple() throws PersistenceLayerException {
verifyCleanStart();
TestContext tc = new TestContext();
commit(testCampaign, tc, "NO");
commit(modCampaign, tc, "YES");
completeRoundRobin(tc);
}
Aggregations