1 package org.jbpm.context.log;2 3 import junit.framework.*;4 5 public class ContextLogTests {6 7 public static Test suite() {8 TestSuite suite = new TestSuite("org.jbpm.context.log");9 //$JUnit-BEGIN$10 suite.addTestSuite(VariableLogTest.class);11 //$JUnit-END$12 return suite;13 }14 }15