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