-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathAllTests.java
More file actions
59 lines (50 loc) · 1.97 KB
/
Copy pathAllTests.java
File metadata and controls
59 lines (50 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package org.jbpt.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.jbpt.test.bp.BPSimTest;
import org.jbpt.test.bp.CBPComputationTest;
import org.jbpt.test.bp.CBPCreatorIdempotenceTest;
import org.jbpt.test.bp.RelSetAlgebraTest;
import org.jbpt.test.bp.RelSetComputationTest;
import org.jbpt.test.bp.RelSetLogCreatorTest;
import org.jbpt.test.petri.StateSpaceTest;
import org.jbpt.test.petri.unfolding.ProperCompletePrefixUnfoldingTest;
import org.jbpt.test.tree.BCTreeExtensiveTest;
import org.jbpt.test.tree.BCTreeTest;
import org.jbpt.test.tree.RPSTExtensiveTest;
import org.jbpt.test.tree.RPSTTest;
import org.jbpt.test.tree.TCTreeExtensiveTest;
import org.jbpt.test.tree.TCTreeTest;
import org.jbpt.test.tree.WFTreeTest;
public class AllTests {
/**
* Please include here all tests that MUST run for every jBPT commit!
*/
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
// Behavioral Profile tests [BEGIN]
suite.addTestSuite(RelSetAlgebraTest.class);
suite.addTestSuite(CBPComputationTest.class);
suite.addTestSuite(CBPCreatorIdempotenceTest.class);
suite.addTestSuite(BPSimTest.class);
suite.addTestSuite(RelSetComputationTest.class);
suite.addTestSuite(RelSetLogCreatorTest.class);
// Behavioral Profile tests [END]
// Tests of jBPT trees [BEGIN]
suite.addTestSuite(BCTreeExtensiveTest.class);
suite.addTestSuite(BCTreeTest.class);
suite.addTestSuite(RPSTExtensiveTest.class);
suite.addTestSuite(RPSTTest.class);
suite.addTestSuite(TCTreeExtensiveTest.class);
suite.addTestSuite(TCTreeTest.class);
suite.addTestSuite(WFTreeTest.class);
// Tests of jBPT trees [END]
// Tests of unfolding [BEGIN]
suite.addTestSuite(ProperCompletePrefixUnfoldingTest.class);
// Tests of unfolding [END]
// Tests of Petri nets [BEGIN]
suite.addTestSuite(StateSpaceTest.class);
// Tests of Petri nets [END]
return suite;
}
}