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