HHH-6744 : Disable failing test due to TransientObjectException with CHECK_NULLABILITY=false

This commit is contained in:
Gail Badner 2011-10-18 15:31:08 -07:00
parent 036b9579d6
commit 35a8543818
1 changed files with 12 additions and 0 deletions

View File

@ -23,8 +23,13 @@
*/
package org.hibernate.test.cascade.circle;
import org.junit.Test;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.dialect.Oracle10gDialect;
import org.hibernate.dialect.PostgreSQLDialect;
import org.hibernate.testing.SkipForDialect;
/**
* @author Gail Badner
@ -35,4 +40,11 @@ public class MultiPathCircleCascadeCheckNullibilityFalseTest extends MultiPathCi
super.configure( cfg );
cfg.setProperty( Environment.CHECK_NULLABILITY, "false" );
}
@Override
@SkipForDialect(value = { Oracle10gDialect.class, PostgreSQLDialect.class }, comment = "This test is known to fail for dialects using a sequence for the native generator. See HHH-6744")
@Test
public void testMergeEntityWithNonNullableTransientEntity() {
super.testMergeEntityWithNonNullableTransientEntity();
}
}