/* * pcGenGUIGordonTest.java */ package pcgen.inttest.game_35e; import pcgen.inttest.PcgenFtlTestCase; import junit.framework.Test; import junit.framework.TestSuite; /** * Tests a Unit Test Case designed to hit many features of PCGen * See the PCG file for details */ @SuppressWarnings("nls") public class pcGenGUIGordonTest extends PcgenFtlTestCase { /** * */ public pcGenGUIGordonTest() { super("35e_gordon"); } /** * standard JUnit style constructor * * @param name */ public pcGenGUIGordonTest(String name) { super(name); } /** * @return A <tt>TestSuite</tt> */ public static Test suite() { return new TestSuite(pcGenGUIGordonTest.class); } /** * Loads and outputs the character. * * @throws Exception If an error occurs. */ public void testCode() throws Exception { runTest("35e_Gordon", "35e"); } }