// verifying that the relation and the traversal from the owned to the // owning side works @Test public void testGettingEmployeeFromParking() { List<ParkingSpace> allSpaces = parkDao.findAll(); ParkingSpace d = allSpaces.get(0); assertNotNull(d.getEmployee()); }