File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 12
12
import jakarta .persistence .ManyToOne ;
13
13
import jakarta .persistence .MapsId ;
14
14
import jakarta .persistence .OneToMany ;
15
+ import org .hibernate .annotations .processing .Exclude ;
15
16
import org .hibernate .testing .orm .junit .DomainModel ;
16
17
import org .hibernate .testing .orm .junit .SessionFactory ;
17
18
import org .hibernate .testing .orm .junit .SessionFactoryScope ;
@@ -82,6 +83,7 @@ static class Loan {
82
83
83
84
84
85
@ Entity (name = "Extension" )
86
+ @ Exclude
85
87
static class Extension {
86
88
@ Id
87
89
private Long exLoanId ;
Original file line number Diff line number Diff line change 13
13
import jakarta .persistence .ManyToOne ;
14
14
15
15
import org .hibernate .annotations .NaturalId ;
16
+ import org .hibernate .annotations .processing .Exclude ;
16
17
import org .hibernate .orm .test .jpa .BaseEntityManagerFunctionalTestCase ;
17
18
18
19
import org .junit .Test ;
22
23
/**
23
24
* @author Vlad Mihalcea
24
25
*/
26
+ @ Exclude
25
27
public class CompositeIdAssociationTest extends BaseEntityManagerFunctionalTestCase {
26
28
27
29
@ Override
Original file line number Diff line number Diff line change 12
12
import jakarta .persistence .JoinColumn ;
13
13
import jakarta .persistence .ManyToOne ;
14
14
15
+ import org .hibernate .annotations .processing .Exclude ;
15
16
import org .hibernate .testing .orm .junit .JiraKey ;
16
17
import org .hibernate .testing .orm .junit .DomainModel ;
17
18
import org .hibernate .testing .orm .junit .SessionFactory ;
33
34
}
34
35
)
35
36
@ SessionFactory
37
+ @ Exclude
36
38
public class CompositeIdAssociationsWithEmbeddedCompositeIdTest {
37
39
38
40
@ AfterEach
Original file line number Diff line number Diff line change 11
11
import jakarta .persistence .Id ;
12
12
import jakarta .persistence .ManyToOne ;
13
13
14
+ import org .hibernate .annotations .processing .Exclude ;
14
15
import org .hibernate .orm .test .jpa .BaseEntityManagerFunctionalTestCase ;
15
16
16
17
import org .junit .Test ;
21
22
/**
22
23
* @author Vlad Mihalcea
23
24
*/
25
+ @ Exclude
24
26
public class IdManyToOneTest extends BaseEntityManagerFunctionalTestCase {
25
27
26
28
@ Override
You can’t perform that action at this time.
0 commit comments