mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-09 04:34:49 +00:00
HHH-6662 - More descriptive test names
This commit is contained in:
parent
414e6111a8
commit
9c859d0432
@ -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() ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user