checkValues("Object2 created and read back in: ", origIntValue2, expectedIntValue2, obj2.intValue);
checkValues("Object2 created and read back in: ", origFloatValue2, expectedFloatValue2, obj2.floatValue);
origIntValue2 = obj2.intValue;
origFloatValue2 = obj2.floatValue;
obj2.setNonPersist(12, (char)30, 5.0, (short)137);
expectedIntValue2 = obj2.calcIntValue();
expectedFloatValue2 = obj2.calcFloatValue();
// change obj2 making it persistent dirty (leave obj1 persistent clean).
obj2.incrementIntValue();
} catch (JDOUserException e) {