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