1 package org.jbpm.graph.node; 2 3 import junit.framework.Test; 4 import junit.framework.TestSuite; 5 6 7 public class GraphNodeTests { 8 9 public static Test suite() { 10 TestSuite suite = new TestSuite("Test for org.jbpm.graph.node"); 11 suite.addTestSuite(TaskNodeTest.class); 13 suite.addTestSuite(EndStateTest.class); 14 suite.addTestSuite(ProcessStateTest.class); 15 return suite; 17 } 18 19 } 20 | Popular Tags |