use of nl.nn.adapterframework.scheduler.job.CheckReloadJob in project iaf by ibissource.
the class CheckReloadJobTest method setup.
@Override
@Before
public void setup() throws Exception {
super.setup();
runMigrator("Migrator/Ibisconfig_4_unittests_changeset.xml");
configuration = new TestConfiguration();
jobDef = new CheckReloadJob() {
@Override
protected String getDataSource() {
return getDataSourceName();
}
};
jobDef.setName("CheckReloadJob");
configuration.autowireByName(jobDef);
configuration.configure();
}
Aggregations