Skip to content

Commit 73289ad

Browse files
committed
HHH-19209 Annotation test classes that are failing due to bug(s) unrelated to this issue with @exclude
1 parent c6bde48 commit 73289ad

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/formula/JoinFormulaManyToOneLazyFetchingTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import org.hibernate.LazyInitializationException;
1919
import org.hibernate.annotations.JoinColumnOrFormula;
2020
import org.hibernate.annotations.JoinFormula;
21+
import org.hibernate.annotations.processing.Exclude;
2122
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;
2223

2324
import org.hibernate.testing.orm.junit.JiraKey;
@@ -29,6 +30,7 @@
2930
import static org.junit.Assert.fail;
3031

3132
@JiraKey(value = "HHH-12770")
33+
@Exclude
3234
public class JoinFormulaManyToOneLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {
3335

3436
@Override

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/formula/JoinFormulaManyToOneNotIgnoreLazyFetchingTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import org.hibernate.annotations.JoinFormula;
1313
import org.hibernate.annotations.NotFound;
1414
import org.hibernate.annotations.NotFoundAction;
15+
import org.hibernate.annotations.processing.Exclude;
1516
import org.hibernate.boot.model.internal.ToOneBinder;
1617
import org.hibernate.internal.CoreMessageLogger;
1718
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;
@@ -39,6 +40,7 @@
3940
import static org.junit.Assert.assertNull;
4041

4142
@JiraKey(value = "HHH-12770")
43+
@Exclude
4244
public class JoinFormulaManyToOneNotIgnoreLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {
4345

4446
@Rule

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/formula/JoinFormulaOneToOneNotIgnoreLazyFetchingTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import org.hibernate.annotations.JoinFormula;
1313
import org.hibernate.annotations.NotFound;
1414
import org.hibernate.annotations.NotFoundAction;
15+
import org.hibernate.annotations.processing.Exclude;
1516
import org.hibernate.boot.model.internal.ToOneBinder;
1617
import org.hibernate.internal.CoreMessageLogger;
1718
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;
@@ -39,6 +40,7 @@
3940
import static org.junit.Assert.assertNull;
4041

4142
@JiraKey(value = "HHH-12770")
43+
@Exclude
4244
public class JoinFormulaOneToOneNotIgnoreLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {
4345

4446
@Rule

0 commit comments

Comments
 (0)