Package org.springframework.webflow.test

Examples of org.springframework.webflow.test.MockFlowSession


    assertSessionNotBound();
  }

  public void testLazyInitializedCollection() {
    MockRequestContext context = new MockRequestContext();
    MockFlowSession flowSession = new MockFlowSession();
    flowSession.getDefinition().getAttributes().put("persistenceContext", "true");
    hibernateListener.sessionStarting(context, flowSession, null);
    context.setActiveSession(flowSession);
    assertSessionBound();

    TestBean bean = hibernateTemplate.get(TestBean.class, Long.valueOf(0));
View Full Code Here

TOP

Related Classes of org.springframework.webflow.test.MockFlowSession

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.