import junit.framework.TestCase;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
import org.dbunit.DatabaseUnitException;
import org.dbunit.database.DatabaseConnection;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
+import java.util.logging.Logger;
import javax.sql.DataSource;
* spring platform transaction manager and hibernate template.
*/
public class DatabaseTesterComponent {
- private static final Log LOG = LogFactory
- .getLog(DatabaseTesterComponent.class);
+ private static final Logger LOG = Logger
+ .getLogger(DatabaseTesterComponent.class.getName());
/**
* Schema pattern.
*/
public String[] getTableNames() throws SQLException {
List<String> result = new ArrayList<String>();
- LOG.debug("Getting database table names to clean (schema: '" +
+ LOG.fine("Getting database table names to clean (schema: '" +
SCHEMA_PATTERN + "'");
ResultSet tables = getConnection().getMetaData().getTables(null,
// infrastructure tables.
if (!table.toLowerCase().startsWith("hibernate")) {
result.add(table);
- LOG.debug("Adding " + table +
+ LOG.fine("Adding " + table +
" to list of tables to be cleaned.");
}
}