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