KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > taskmgmt > def > TaskMgmtDefTests


1 package org.jbpm.taskmgmt.def;
2
3 import junit.framework.*;
4
5 public class TaskMgmtDefTests {
6
7   public static Test suite() throws Exception JavaDoc {
8     TestSuite suite = new TestSuite("org.jbpm.task.def");
9
10     suite.addTestSuite( SwimlaneTest.class );
11     suite.addTestSuite( TaskMgmtDefinitionTest.class );
12
13     return suite;
14   }
15 }
16
Popular Tags