KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > spi > memory > MemoryFunctionalWorkflowTestCase


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.workflow.spi.memory;
6
7 import com.opensymphony.workflow.spi.BaseFunctionalWorkflowTest;
8
9
10 /**
11  * This test case is functional in that it attempts to validate the entire
12  * lifecycle of a workflow. This is also a good resource for beginners
13  * to OSWorkflow.
14  *
15  * @author Eric Pugh (epugh@upstate.com)
16  */

17 public class MemoryFunctionalWorkflowTestCase extends BaseFunctionalWorkflowTest {
18     //~ Constructors ///////////////////////////////////////////////////////////
19

20     public MemoryFunctionalWorkflowTestCase(String JavaDoc s) {
21         super(s);
22     }
23
24     //~ Methods ////////////////////////////////////////////////////////////////
25

26     protected void setUp() throws Exception JavaDoc {
27         MemoryWorkflowStore.reset();
28         super.setUp();
29     }
30 }
31
Popular Tags