01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: /*
06: * Created on Feb 12, 2004
07: *
08: *
09: */
10: package com.opensymphony.workflow.spi.prevayler;
11:
12: import com.opensymphony.workflow.config.Configuration;
13: import com.opensymphony.workflow.config.DefaultConfiguration;
14: import com.opensymphony.workflow.spi.AbstractFunctionalWorkflowTest;
15:
16: /**
17: *
18: *
19: *
20: * @author Christopher Farnham
21: **/
22: public class PrevaylerFunctionalWorkflowTestCase extends
23: AbstractFunctionalWorkflowTest {
24: //~ Constructors ///////////////////////////////////////////////////////////
25:
26: /**
27: * @param s
28: */
29: public PrevaylerFunctionalWorkflowTestCase(String s) {
30: super (s);
31: }
32:
33: //~ Methods ////////////////////////////////////////////////////////////////
34:
35: /* (non-Javadoc)
36: * @see junit.framework.TestCase#setUp()
37: */
38: protected void setUp() throws Exception {
39: super .setUp();
40:
41: Configuration config = new DefaultConfiguration();
42: config
43: .load(getClass().getResource(
44: "/osworkflow-prevayler.xml"));
45: workflow.setConfiguration(config);
46: }
47: }
|