diff --git a/spring-batch-core/.springBeans b/spring-batch-core/.springBeans index 3d031b577..20277dd79 100644 --- a/spring-batch-core/.springBeans +++ b/spring-batch-core/.springBeans @@ -1,7 +1,7 @@ 1 - + @@ -47,6 +47,17 @@ src/test/resources/org/springframework/batch/core/configuration/xml/NextAttributeMultipleFinalJobParserTests-context.xml src/test/resources/org/springframework/batch/core/configuration/xml/StepParserBadRetryListenerTests-context.xml src/test/resources/org/springframework/batch/core/configuration/xml/StepParserBadStepListenerTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/DefaultFailureJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/DefaultSuccessJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/DuplicateTransitionJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/EndTransitionDefaultStatusJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/FailTransitionDefaultStatusJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/FailTransitionJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/SplitDifferentResultsFailFirstJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/SplitDifferentResultsFailSecondJobParserTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/StepParserBeanNameTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/StepParserTaskletAttributesTests-context.xml + src/test/resources/org/springframework/batch/core/configuration/xml/StopIncompleteJobParserTests-context.xml diff --git a/spring-batch-core/src/test/java/org/springframework/batch/core/job/flow/support/SimpleFlowTests.java b/spring-batch-core/src/test/java/org/springframework/batch/core/job/flow/support/SimpleFlowTests.java index da1f9012a..266fb3c05 100644 --- a/spring-batch-core/src/test/java/org/springframework/batch/core/job/flow/support/SimpleFlowTests.java +++ b/spring-batch-core/src/test/java/org/springframework/batch/core/job/flow/support/SimpleFlowTests.java @@ -26,13 +26,11 @@ import java.util.Collections; import java.util.List; import org.junit.Test; -import org.springframework.batch.core.BatchStatus; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.job.flow.FlowExecution; import org.springframework.batch.core.job.flow.FlowExecutionException; import org.springframework.batch.core.job.flow.FlowExecutionStatus; import org.springframework.batch.core.job.flow.FlowExecutor; -import org.springframework.batch.core.job.flow.support.state.EndState; /** * @author Dave Syer