/* * PreLegsTest.java * * Copyright 2006 (C) Aaron Divinsky <boomer70@yahoo.com> * * This library 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 library 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * */ package pcgen.core.prereq; import junit.framework.Test; import junit.framework.TestSuite; import junit.textui.TestRunner; import pcgen.AbstractCharacterTestCase; import pcgen.cdom.enumeration.IntegerKey; import pcgen.core.PCTemplate; import pcgen.core.PlayerCharacter; import pcgen.core.Race; import pcgen.persistence.lst.prereq.PreParserFactory; /** * <code>PreLegsTest</code> tests that the PRELEGS tag is * working correctly. * * * @author Aaron Divinsky <boomer70@yahoo.com> */ public class PreLegsTest extends AbstractCharacterTestCase { public static void main(final String[] args) { TestRunner.run(PreLegsTest.class); } /** * @return Test */ public static Test suite() { return new TestSuite(PreLegsTest.class); } /** * Test the PRELEGS code * @throws Exception */ public void testLegs() throws Exception { final PlayerCharacter character = getCharacter(); Race race = new Race(); race.put(IntegerKey.LEGS, 2); character.setRace(race); Prerequisite prereq; final PreParserFactory factory = PreParserFactory.getInstance(); prereq = factory.parse("PRELEGSLT:2"); assertFalse("Character has more than 1 leg", PrereqHandler.passes( prereq, character, null)); prereq = factory.parse("PRELEGSEQ:2"); assertTrue("Character has 2 legs", PrereqHandler.passes(prereq, character, null)); prereq = factory.parse("PRELEGSGT:2"); assertFalse("Character does not have more than 2 legs", PrereqHandler .passes(prereq, character, null)); PCTemplate tmpl = new PCTemplate(); tmpl.put(IntegerKey.LEGS, 3); character.addTemplate(tmpl); assertTrue("Character does have more than 2 legs", PrereqHandler .passes(prereq, character, null)); } }