1 package org.jbpm.taskmgmt.exe; 2 3 import junit.framework.*; 4 5 public class TaskExeTests { 6 7 public static Test suite() throws Exception { 8 TestSuite suite = new TestSuite("org.jbpm.task.exe"); 9 10 suite.addTestSuite( RuntimeTaskCreationTest.class ); 11 suite.addTestSuite( SwimlaneTest.class ); 12 suite.addTestSuite( TaskExecutionTest.class ); 13 suite.addTestSuite( TaskEventExecutionTest.class ); 14 15 return suite; 16 } 17 18 } 19 | Popular Tags |