Package org.springframework.batch.core.scope.context

Examples of org.springframework.batch.core.scope.context.JobContext


  private void testJobParameters(Object target) throws Exception {
    TestContext testContext = getTestContext(target);
    listener.prepareTestInstance(testContext);
    try {
      listener.beforeTestMethod(testContext);
      JobContext context = JobSynchronizationManager.getContext();
      assertNotNull(context);
      assertEquals("spam", context.getJobParameters().get("foo"));
    }
    finally {
      listener.afterTestMethod(testContext);
    }
    assertNull(JobSynchronizationManager.getContext());
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.scope.context.JobContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.