transaction = session.beginTransaction();
husband = (Husband) session.get( Husband.class, husband.getId() );
assertNotNull( husband );
assertNotNull( husband.getWife() );
session.clear();
wife = (Wife) session.get( Wife.class, wife.getId() );
assertNotNull( wife );
husband = wife.getHusband();
assertNotNull( husband );
Wife bea2 = new Wife( "still_bea" );