01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest.spring.integrationtests.tests;
06:
07: import junit.framework.Test;
08:
09: public class WebFlowContinuationFlowExecutionTest extends
10: WebFlowTestBase {
11:
12: public static Test suite() {
13: return new WebFlowTestSetup(
14: WebFlowContinuationFlowExecutionTest.class);
15: }
16:
17: public void testContinuationFlowExecution() throws Exception {
18: checkWebFlow("webflow.htm", true);
19: }
20:
21: }
|