assertEquals(Collections.emptyList(), q.getResultList());
commitTxn();
}
public void testJoinOnOneToOne_Simple() {
Major major1 = newMajor("Liberal Arts");
Major major2 = newMajor("Engineering");
Student student1 = newStudent(10, major1);
Student student2 = newStudent(10, major2);
beginTxn();
em.persist(student1);
commitTxn();