com.github.springtestdbunit.DbUnitContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbunit-spring Show documentation
Show all versions of dbunit-spring Show documentation
Integration between the Spring testing framework and DBUnit
package com.github.springtestdbunit;
import com.github.springtestdbunit.dataset.DataSetLoader;
import com.github.springtestdbunit.operation.DatabaseOperationLookup;
/**
* @deprecated Not used anymore will remove ASAP
*/
@Deprecated
public class DbUnitContext {
private DatabaseConnections databaseConnections;
private DataSetLoader dataSetLoader;
private DatabaseOperationLookup databaseOperationLookup;
public DatabaseConnections getDatabaseConnections() {
return databaseConnections;
}
public void setDatabaseConnections(DatabaseConnections databaseConnections) {
this.databaseConnections = databaseConnections;
}
public DataSetLoader getDataSetLoader() {
return dataSetLoader;
}
public void setDataSetLoader(DataSetLoader dataSetLoader) {
this.dataSetLoader = dataSetLoader;
}
public DatabaseOperationLookup getDatabaseOperationLookup() {
return databaseOperationLookup;
}
public void setDatabaseOperationLookup(DatabaseOperationLookup databaseOperationLookup) {
this.databaseOperationLookup = databaseOperationLookup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy