105106107108109110111112113114115
@Test @InSequence(2) public void testManyToOne() throws Exception { EntityTest test = lookup("EntityTest", EntityTest.class); Flight f = test.manyToOneCreate(); Flight f2 = test.findFlightById(f.getId()); assertEquals(f.getId(), new Long(1));