diff --git a/spring-batch-test/src/site/apt/changelog.apt b/spring-batch-test/src/site/apt/changelog.apt new file mode 100644 index 000000000..9525fae9e --- /dev/null +++ b/spring-batch-test/src/site/apt/changelog.apt @@ -0,0 +1,15 @@ +Changelog: Spring Batch Test + +* 2.0.0.RC1 + * BATCH-1049: Add compile scope to spring-test in spring-batch-test + * BATCH-1048: Add site docos for the Test project + +* 2.0.0.M4 + + * BATCH-1045: Move DataSourceInitializer to the test project's "main" folder + * BATCH-1032: Modify AbstractJobTests in test project to be able to launch FlowJob steps individually + +* 2.0.0.M3 + + * BATCH-933: AssertFile class for checking equality of files in unit tests + * BATCH-903: Create test project diff --git a/spring-batch-test/src/site/apt/index.apt b/spring-batch-test/src/site/apt/index.apt new file mode 100644 index 000000000..355e3c81b --- /dev/null +++ b/spring-batch-test/src/site/apt/index.apt @@ -0,0 +1,22 @@ +Spring Batch Test + +* Overview + + This module contains code for facilitating the testing of batch jobs. The project + includes the following classes: + +*----+----+ +| Class Name | Use | +*---- +| AbstractJobTests | End-to-end batch job testing as well as testing individual steps | +*---- +| AssertFile | Checking equality of flat files | +*---- +| DataSourceInitializer | Wrapper for a DataSource that can run scripts on start up and shut down | +*---- +| JobRepositoryTestUtils | Create and remove JobExecution instances from a database | +*---- +| MetaDataInstanceFactory | Create test instances of JobExecution, JobInstance and StepExecution | +*---- +| StepRunner | Execute steps outside of a Job | +*----