HHH-6212 Consistent naming of test classes
This commit is contained in:
parent
8ecd7aace8
commit
5954d1c2c4
|
@ -72,7 +72,7 @@ public class ProxyBindingTest extends BaseAnnotationBindingTestCase {
|
|||
assertTrue( "Wrong laziness", binding.isLazy() );
|
||||
assertEquals(
|
||||
"Wrong proxy interface",
|
||||
"org.hibernate.metamodel.source.annotations.entity.ProxyBindingTests$ProxyInterfaceEntity",
|
||||
"org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest$ProxyInterfaceEntity",
|
||||
binding.getProxyInterfaceType().getValue().getName()
|
||||
);
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ public class QuotedIdentifierTest extends BaseAnnotationBindingTestCase {
|
|||
@Resources(annotatedClasses = { Item.class, Item2.class, Item3.class, Item4.class }, ormXmlPath = ormPath)
|
||||
public void testDelimitedIdentifiers() {
|
||||
EntityBinding item = getEntityBinding( Item.class );
|
||||
assertIdentifierEquals( "`QuotedIdentifierTests$Item`", item );
|
||||
assertIdentifierEquals( "`QuotedIdentifierTest$Item`", item );
|
||||
|
||||
item = getEntityBinding( Item2.class );
|
||||
assertIdentifierEquals( "`TABLE_ITEM2`", item );
|
||||
|
|
Loading…
Reference in New Issue