mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +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
|
||||
public void testSchemaName() {
|
||||
public void testJoinTableSchemaName() {
|
||||
Iterator<Table> tableIterator = configuration().getTableMappings();
|
||||
while ( tableIterator.hasNext() ) {
|
||||
Table table = tableIterator.next();
|
||||
@ -47,12 +47,12 @@ public void testSchemaName() {
|
||||
}
|
||||
|
||||
@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() ) );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user