清单 8. 测试集合的 DbUnit fixture
public class DatabaseFixture {
@BeforeTest
public void seedDatabase(String seedpath, String driver,
String url, String user, String pssword) throws Exception {
IDatabaseConnection conn = this.getConnection(driver, url, user, pssword);
IDataSet data = this.getDataSet(seedpath);