blob: 235a1b1f56a1ce833fb2518d7fc9ea2158872bbd [file] [log] [blame]
package org.eclipse.persistence.testing.tests.wdf.jpa1.relation;
import static org.junit.Assert.assertNotNull;
import javax.persistence.EntityManager;
import org.eclipse.persistence.testing.framework.wdf.JPAEnvironment;
import org.eclipse.persistence.testing.models.wdf.jpa1.employee.Course;
import org.eclipse.persistence.testing.tests.wdf.jpa1.JPA1Base;
import org.junit.Test;
public class TestPrimaryKeyJoinColumn extends JPA1Base {
@Test
public void testPersistCourseWithoutMaterial() {
JPAEnvironment env = getEnvironment();
Course course = new Course();
EntityManager em = env.getEntityManager();
try {
env.beginTransaction(em);
em.persist(course);
env.commitTransactionAndClear(em);
long id = course.getCourseId();
assertNotNull(em.find(Course.class, id));
} finally {
if (env.isTransactionActive(em)) {
env.rollbackTransactionAndClear(em);
}
}
}
}