org.dbunit.assertion.comparer.value.ValueComparerDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbunit Show documentation
Show all versions of dbunit Show documentation
dbUnit is a JUnit extension (also usable from Ant and Maven) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage.
package org.dbunit.assertion.comparer.value;
import java.util.Map;
/**
* Default {@link ValueComparer}s, used when one is not specified by a test.
*
* @author Jeff Jensen
* @since 2.6.0
*/
public interface ValueComparerDefaults
{
ValueComparer getDefaultValueComparer();
Map> getDefaultTableColumnValueComparerMap();
Map getDefaultColumnValueComparerMapForTable(
String tableName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy