mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-07 10:19:36 +00:00
HHH-18949 slightly improve test
This commit is contained in:
parent
429f5beff6
commit
9ce2960b81
@ -11,4 +11,7 @@
|
||||
public class Person {
|
||||
@Id String SSN;
|
||||
String UserID;
|
||||
String fullName;
|
||||
int X;
|
||||
int y;
|
||||
}
|
||||
|
@ -25,5 +25,11 @@ public void test() {
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "_SSN" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "UserID" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "USER_ID" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "fullName" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "FULL_NAME" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "X" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "_X" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "y" );
|
||||
assertPresenceOfFieldInMetamodelFor( Person.class, "Y" );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user