01: package com.opensymphony.webwork;
02:
03: import com.opensymphony.webwork.config.Configuration;
04: import com.opensymphony.xwork.XWorkTestCase;
05:
06: /**
07: * Base test case for unit testing WebWork.
08: *
09: * @author plightbo
10: */
11: public abstract class WebWorkTestCase extends XWorkTestCase {
12:
13: protected void setUp() throws Exception {
14: super .setUp();
15: Configuration.reset();
16: }
17:
18: protected void tearDown() throws Exception {
19: super.tearDown();
20: }
21:
22: }
|