BATCH-220:Moved SimpleJob (formerly simpleTaskletJob) to use the ChunkedStep

This commit is contained in:
lucasward
2008-02-14 22:19:28 +00:00
parent 600c68aa02
commit 5e8a9a57d0
4 changed files with 270 additions and 259 deletions

View File

@@ -20,10 +20,10 @@ package org.springframework.batch.sample;
* This job differs from FixedLengthImportJob only in internal job, therefore
* the test is reused, only the job config location is overridden
*/
public class SimpleTaskletJobFunctionalTests extends FixedLengthImportJobFunctionalTests {
public class SimpleJobFunctionalTests extends FixedLengthImportJobFunctionalTests {
protected String[] getConfigLocations() {
return new String[]{"jobs/simpleTaskletJob.xml"};
return new String[]{"jobs/simpleJob.xml"};
}
}