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 WebFlowDefaultFlowTest extends WebFlowTestBase {
10:
11: public static Test suite() {
12: return new WebFlowTestSetup(WebFlowDefaultFlowTest.class);
13: }
14:
15: public void testDefaultFlowExecution() throws Exception {
16: checkWebFlow("webflow2.htm", false);
17: }
18:
19: }
|