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 com.tc.test.server.appserver.AppServerFactory;
08:
09: import java.util.Date;
10:
11: import junit.framework.Test;
12:
13: public class WebFlowSingleKeyFlowExecutionTest extends WebFlowTestBase {
14:
15: public WebFlowSingleKeyFlowExecutionTest() {
16: // MNK-377
17: if (AppServerFactory.getCurrentAppServerId() == AppServerFactory.WEBLOGIC
18: && AppServerFactory.getCurrentAppServerMajorVersion()
19: .equals("9")) {
20: disableAllUntil(new Date(Long.MAX_VALUE));
21: }
22:
23: }
24:
25: public static Test suite() {
26: return new WebFlowTestSetup(
27: WebFlowSingleKeyFlowExecutionTest.class);
28: }
29:
30: public void testSingleKeyFlowExecution() throws Exception {
31: checkWebFlow("webflow3.htm", false);
32: }
33:
34: }
|