KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > def > GraphDefDbTests


1 package org.jbpm.graph.def;
2
3 import org.jbpm.graph.action.ActionDbTest;
4 import org.jbpm.graph.node.EndStateDbTest;
5 import org.jbpm.graph.node.ProcessStateDbTest;
6 import org.jbpm.graph.node.StartStateDbTest;
7
8 import junit.framework.*;
9
10 public class GraphDefDbTests {
11
12   public static Test suite() {
13     TestSuite suite = new TestSuite("dbtests org.jbpm.graph.def");
14     //$JUnit-BEGIN$
15
suite.addTestSuite(ActionDbTest.class);
16     suite.addTestSuite(EndStateDbTest.class);
17     suite.addTestSuite(EventDbTest.class);
18     suite.addTestSuite(MultipleProcessDefinitionEventsDbTest.class);
19     suite.addTestSuite(NodeDbTest.class);
20     suite.addTestSuite(ProcessDefinitionDbTest.class);
21     suite.addTestSuite(ProcessStateDbTest.class);
22     suite.addTestSuite(StartStateDbTest.class);
23     //$JUnit-END$
24
return suite;
25   }
26 }
27
Popular Tags