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

com.github.dbunit.rules.assertion.DataSetAssertion Maven / Gradle / Ivy

package com.github.dbunit.rules.assertion;

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

/**
 * Created by rmpestano on 5/28/16.
 */
public class DataSetAssertion {

    private static final DataSetAssert INSTANCE = new DataSetAssert();



    public static void assertEqualsIgnoreCols(ITable expectedDataSet,
                                    ITable actualDataSet, String[] ignoreCols)
            throws DatabaseUnitException {
        INSTANCE.assertEqualsIgnoreCols(expectedDataSet, actualDataSet, ignoreCols);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy