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

View File

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