KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > jpdl > par > JpdlParDbTests


1 package org.jbpm.jpdl.par;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6
7 public class JpdlParDbTests {
8
9   public static Test suite() {
10     TestSuite suite = new TestSuite("org.jbpm.jpdl.par");
11     //$JUnit-BEGIN$
12
suite.addTestSuite(ProcessArchiveDeployerDbTest.class);
13     suite.addTestSuite(ProcessArchiveClassLoadingDbTest.class);
14     //$JUnit-END$
15
return suite;
16   }
17
18 }
19
Popular Tags