package org.wamblee.support.persistence; import org.dbunit.dataset.DataSetException; import org.dbunit.dataset.filter.ITableFilterSimple; /** * This class describes the tables we are testing. * This implementation selects all tables with the "XYZ" prefix. */ public class MyTables implements ITableFilterSimple { /** * * @param aJpaTables Specific tables used by the JPA provider in addition to those for the * entities. */ public MyTables() { // Empty. } public boolean accept(String tableName) throws DataSetException { return tableName.startsWith("XYZ_"); } }