KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > node > GraphNodeDbTests


1 package org.jbpm.graph.node;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6
7 public class GraphNodeDbTests {
8
9   public static Test suite() {
10     TestSuite suite = new TestSuite("Test for org.jbpm.graph.node");
11     //$JUnit-BEGIN$
12
suite.addTestSuite(StartStateDbTest.class);
13     suite.addTestSuite(ProcessStateDbTest.class);
14     suite.addTestSuite(JpdlDbTest.class);
15     suite.addTestSuite(EndStateDbTest.class);
16     //$JUnit-END$
17
return suite;
18   }
19
20 }
21
Popular Tags