HHH-6525 : Integrate Set-style plural attributes into persisters

This commit is contained in:
Gail Badner 2012-02-27 12:50:54 -08:00
parent bd0fcdd2f7
commit 09002e9872
1 changed files with 3 additions and 1 deletions

View File

@ -33,6 +33,7 @@ import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.testing.FailureExpected;
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
import static org.junit.Assert.assertEquals;
@ -54,6 +55,7 @@ public class SimpleElementSetTest extends BaseCoreFunctionalTestCase {
}
@Test
@FailureExpected( jiraKey = "HHH-6525")
public void testLoad() throws HibernateException, SQLException {
Session s = openSession();
Transaction t = s.beginTransaction();
@ -76,4 +78,4 @@ public class SimpleElementSetTest extends BaseCoreFunctionalTestCase {
t.commit();
s.close();
}
}
}