HHH-18949 slightly improve test

This commit is contained in:
Gavin King 2024-12-16 23:48:56 +01:00
parent 429f5beff6
commit 9ce2960b81
2 changed files with 9 additions and 0 deletions

View File

@ -11,4 +11,7 @@
public class Person {
@Id String SSN;
String UserID;
String fullName;
int X;
int y;
}

View File

@ -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" );
}
}