KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > log > GraphLogTests


1 package org.jbpm.graph.log;
2
3 import junit.framework.*;
4
5 public class GraphLogTests {
6
7   public static Test suite() {
8     TestSuite suite = new TestSuite("org.jbpm.graph.log");
9     //$JUnit-BEGIN$
10
suite.addTestSuite(ActionLogTest.class);
11     suite.addTestSuite(ProcessInstanceLogTest.class);
12     suite.addTestSuite(ProcessLogsTest.class);
13     suite.addTestSuite(SignalLogTest.class);
14     suite.addTestSuite(TransitionLogTest.class);
15     //$JUnit-END$
16
return suite;
17   }
18 }
19
Popular Tags