1 package org.jbpm.context.exe; 2 3 import junit.framework.*; 4 5 public class ContextExeTests { 6 7 public static Test suite() { 8 TestSuite suite = new TestSuite("org.jbpm.context.exe"); 9 suite.addTestSuite(JbpmTypesTest.class); 11 suite.addTestSuite(TransientVariableTest.class); 12 suite.addTestSuite(VariableScopingTest.class); 13 suite.addTestSuite(VariableTypeTest.class); 14 return suite; 16 } 17 } 18 | Popular Tags |