1 package org.jbpm.logging.exe;2 3 import junit.framework.*;4 5 public class LoggingExeTests {6 7 public static Test suite() throws Exception {8 TestSuite suite = new TestSuite("org.jbpm.logging.exe");9 10 suite.addTestSuite( CompositeLogTest.class );11 12 return suite;13 }14 }15