1 package org.jbpm.taskmgmt.log; 2 3 import junit.framework.Test; 4 import junit.framework.TestSuite; 5 6 public class TaskMgmtLogDbTests { 7 8 public static Test suite() { 9 TestSuite suite = new TestSuite("dbtests org.jbpm.taskmgmt.log"); 10 suite.addTestSuite(TaskLogDbTest.class); 12 suite.addTestSuite(SwimlaneLogDbTest.class); 13 return suite; 15 } 16 17 } 18 | Popular Tags |