HHH-6212 Consistent naming of test classes

This commit is contained in:
Hardy Ferentschik 2011-07-25 17:25:54 +02:00
parent 8ecd7aace8
commit 5954d1c2c4
2 changed files with 2 additions and 2 deletions

View File

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

View File

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