public void test00_AGetBExistingAB() throws Exception {
resetDB();
beginTransaction();
try {
PersonLocal person = findPerson(1);
assertNotNull("person is null", person);
LicenseLocal license = person.getLicense();
assertNotNull("license is null", license);
assertEquals(new Integer(11), license.getId());
assertEquals("value11", license.getNumber());
} finally {
completeTransaction();