HHH-17377 - Migrate to JPA 3.2
https://hibernate.atlassian.net/browse/HHH-17377 Test compilation success!! 95 test failures next
This commit is contained in:
parent
ddb5188d9e
commit
e12a17a713
|
@ -55,8 +55,8 @@ public class RuntimeModelSmokeTests {
|
||||||
final EntityPersister mappingType = runtimeMetamodels.getMappingMetamodel().findEntityDescriptor( FULL_NAME );
|
final EntityPersister mappingType = runtimeMetamodels.getMappingMetamodel().findEntityDescriptor( FULL_NAME );
|
||||||
assertThat( mappingType, notNullValue() );
|
assertThat( mappingType, notNullValue() );
|
||||||
|
|
||||||
final EntityDomainType<Object> jpaType = runtimeMetamodels.getJpaMetamodel().entity( SIMPLE_NAME );
|
final EntityDomainType<?> jpaType = runtimeMetamodels.getJpaMetamodel().entity( SIMPLE_NAME );
|
||||||
assertThat( mappingType, notNullValue() );
|
assertThat( jpaType, notNullValue() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity( name = "SimpleEntity" )
|
@Entity( name = "SimpleEntity" )
|
||||||
|
|
Loading…
Reference in New Issue