RESOLVED - BATCH-1048: Added site directory to src

This commit is contained in:
dhgarrette
2009-02-01 22:55:46 +00:00
parent b4a97d060f
commit 0633d4522d
2 changed files with 37 additions and 0 deletions

View File

@@ -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

View File

@@ -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 |
*----