01: /*
02: * Danet GmbH
03: * Beratung und Software-Entwicklung
04: * Geschäftstelle AN
05: *
06: * $Id: Contrib.java,v 1.1.1.1 2003/06/30 20:06:59 drmlipp Exp $
07: *
08: * $Log: Contrib.java,v $
09: * Revision 1.1.1.1 2003/06/30 20:06:59 drmlipp
10: * Initial import
11: *
12: * Revision 1.10 2002/10/09 14:27:33 lipp
13: * Intermediate, compilable state.
14: *
15: * Revision 1.9 2002/08/30 13:37:05 lipp
16: * Using Workflow engine facade now.
17: *
18: * Revision 1.8 2002/08/21 22:06:48 lipp
19: * Finished transition to ProcessMgrStub.
20: *
21: * Revision 1.7 2002/01/23 15:42:04 lipp
22: * Adapted to interface changes.
23: *
24: * Revision 1.6 2001/12/13 21:00:05 lipp
25: * Simplified temporary implementation of a requester.
26: *
27: * Revision 1.5 2001/12/11 09:54:45 lipp
28: * Introduced security for workflow.
29: *
30: * Revision 1.4 2001/11/07 11:39:00 montag
31: * changed to internal ejb references
32: *
33: * Revision 1.3 2001/09/25 12:12:03 montag
34: * unittests corrected
35: *
36: * Revision 1.2 2001/09/24 13:43:11 montag
37: * WfProcessPK, WfActivityPK and ContributorPK removed.
38: *
39: * Revision 1.1 2001/08/29 10:59:11 lipp
40: * Tests split in groups.
41: *
42: */
43: package domain;
44:
45: import junit.framework.Test;
46: import junit.framework.TestCase;
47: import junit.framework.TestSuite;
48:
49: /**
50: * Zusammenstellung aller TimerObjectTests.
51: * @author <a href="mailto:lipp@danet.de"></a>
52: * @version 1.0
53: */
54: public class Contrib extends TestCase {
55:
56: /**
57: * Konstruktor zum Erzeugen eines TestCase
58: * @param name a <code>String</code> value
59: */
60: public Contrib(String name) {
61: super (name);
62: }
63:
64: /**
65: * Stellt diese TestSuite zusammen.
66: * @return a <code>Test</code> value
67: */
68: public static Test suite() {
69: TestSuite suite = new TestSuite();
70: return suite;
71: }
72:
73: /**
74: * Initialisierung.
75: * @exception Exception if an error occurs
76: */
77: protected void setUp() throws Exception {
78: }
79:
80: }
|