All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.inftec.ju.testing.db.DbDataUtilProvider Maven / Gradle / Ivy

package ch.inftec.ju.testing.db;

/**
 * Helper interface to provide a DbDataUtil instance to be used to perform
 * DbUnit data import and export for container tests.
 * 

* If not specified, the DB tests will create a new DbDataUtil instance for every cycle * which may result in repetitive queries to the DB * @author Martin Meyer * */ public interface DbDataUtilProvider { /** * Gets a DbDataUtil instance to be used to perform data imports and exports. * @return DbDataUtil instance */ public DbDataUtil getDbDataUtil(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy