*/
public void testGetTableName() throws RepositoryException {
JDBCRepositoryImpl repository =
(JDBCRepositoryImpl) createTestableRepository();
AlternateNames names = new AlternateNames("NORMAL", "SHORT");
String tableName = repository.getAppropriateName(names);
assertEquals("The tablename is incorrect",
"SHORT", tableName);
}