01: /*
02: * Danet GmbH
03: * Beratung und Software-Entwicklung
04: * Geschäftstelle AN
05: *
06: * $Id: WebAction.java,v 1.1.1.1 2003/06/30 20:07:00 drmlipp Exp $
07: *
08: * $Log: WebAction.java,v $
09: * Revision 1.1.1.1 2003/06/30 20:07:00 drmlipp
10: * Initial import
11: *
12: * Revision 1.2 2003/04/24 20:51:21 lipp
13: * Fixed some warnings.
14: *
15: * Revision 1.1 2001/11/19 15:07:07 schlue
16: * Unit tests for web actions added
17: *
18: *
19: *
20: */
21: package util;
22:
23: import junit.framework.*;
24:
25: /**
26: * Tests the web action handler and dispatcher
27: */
28: public class WebAction extends TestCase {
29: /**
30: * Konstruktor zum Erzeugen eines TestCase
31: */
32: public WebAction(String name) {
33: super (name);
34: }
35:
36: /**
37: * Assembling the test suite
38: */
39: public static Test suite() {
40: TestSuite suite = new TestSuite();
41: suite.addTest(new WebAction("newWebActionHandler"));
42:
43: return suite;
44: }
45:
46: /**
47: * Test creating of a new Web Action Handlerlocale and loading all resource entries
48: */
49: public void newWebActionHandler() throws Exception {
50: MyActs.suite();
51: }
52: }
|