Index: test/java/javax/jdo/spi/JDOImplHelperTest.java =================================================================== --- test/java/javax/jdo/spi/JDOImplHelperTest.java (revision 516314) +++ test/java/javax/jdo/spi/JDOImplHelperTest.java (working copy) @@ -41,6 +41,12 @@ } /** */ + public void setUp() { + // make sure PCClass is loaded before any tests are run + PCPoint p = new PCPoint(1, new Integer(1)); + } + + /** */ public void testGetFieldNames() { JDOImplHelper implHelper = JDOImplHelper.getInstance(); String[] fieldNames = implHelper.getFieldNames(PCPoint.class); @@ -129,8 +135,6 @@ /** */ public void testClassRegistration() { JDOImplHelper implHelper = JDOImplHelper.getInstance(); - // make sure PCClass is loaded - PCPoint p = new PCPoint(1, new Integer(1)); Collection registeredClasses = implHelper.getRegisteredClasses(); // test whether PCPoint is registered