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

org.dbunit.assertion.comparer.value.IsActualGreaterThanExpectedValueComparer Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.8.0
Show newest version
package org.dbunit.assertion.comparer.value;

import org.dbunit.DatabaseUnitException;
import org.dbunit.dataset.ITable;
import org.dbunit.dataset.datatype.DataType;

/**
 * {@link ValueComparer} implementation that verifies actual value is greater
 * than expected value.
 *
 * @author Jeff Jensen
 * @since 2.6.0
 */
public class IsActualGreaterThanExpectedValueComparer extends ValueComparerTemplateBase
{
    @Override
    protected boolean isExpected(final ITable expectedTable,
            final ITable actualTable, final int rowNum, final String columnName,
            final DataType dataType, final Object expectedValue,
            final Object actualValue) throws DatabaseUnitException
    {
        return dataType.compare(actualValue, expectedValue) > 0;
    }

    @Override
    protected String getFailPhrase()
    {
        return "not greater than";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy