Class ContainsFilterTable
- java.lang.Object
-
- com.github.database.rider.core.util.ContainsFilterTable
-
- All Implemented Interfaces:
org.dbunit.dataset.ITable
public class ContainsFilterTable extends Object implements org.dbunit.dataset.ITable
-
-
Constructor Summary
Constructors Constructor Description ContainsFilterTable(org.dbunit.dataset.ITable actualTable, org.dbunit.dataset.ITable expectedTable, List<String> ignoredCols)Creates a newITablewhere some rows can be filtered out from the original table
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetRowCount()org.dbunit.dataset.ITableMetaDatagetTableMetaData()ObjectgetValue(int row, String column)
-
-
-
Constructor Detail
-
ContainsFilterTable
public ContainsFilterTable(org.dbunit.dataset.ITable actualTable, org.dbunit.dataset.ITable expectedTable, List<String> ignoredCols) throws org.dbunit.dataset.DataSetExceptionCreates a newITablewhere some rows can be filtered out from the original table- Parameters:
actualTable- The table to be wrappedexpectedTable- actualTable will be filtered by this tableignoredCols- columns to ignore in comparison- Throws:
org.dbunit.dataset.DataSetException- throws DataSetException
-
-