KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > jpdl > exe > JpdlExeTests


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