HHH-6662 - More descriptive test names

This commit is contained in:
Lukasz Antoniak 2012-07-26 06:53:54 +02:00
parent 414e6111a8
commit 9c859d0432
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ public class AssociationOverrideSchemaTest extends BaseCoreFunctionalTestCase {
}
@Test
public void testSchemaName() {
public void testJoinTableSchemaName() {
Iterator<Table> tableIterator = configuration().getTableMappings();
while ( tableIterator.hasNext() ) {
Table table = tableIterator.next();
@ -47,12 +47,12 @@ public class AssociationOverrideSchemaTest extends BaseCoreFunctionalTestCase {
}
@Test
public void testJoinColumnName() {
public void testJoinTableJoinColumnName() {
Assert.assertTrue( SchemaUtil.isColumnPresent( TABLE_NAME, ID_COLUMN_NAME, configuration() ) );
}
@Test
public void testColumnName() {
public void testJoinTableColumnName() {
Assert.assertTrue( SchemaUtil.isColumnPresent( TABLE_NAME, VALUE_COLUMN_NAME, configuration() ) );
}
}