1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
package org.sat4j.minisat.constraints; |
8 |
|
|
9 |
|
import junit.framework.Test; |
10 |
|
import junit.framework.TestSuite; |
11 |
|
|
12 |
|
|
13 |
|
@author |
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 1 |
Complexity Density: 0,05 |
|
18 |
|
public class AllTests { |
19 |
|
|
|
|
| 0% |
Uncovered Elements: 21 (21) |
Complexity: 1 |
Complexity Density: 0,05 |
|
20 |
0
|
public static Test suite() {... |
21 |
0
|
TestSuite suite = new TestSuite( |
22 |
|
"Test for org.sat4j.minisat.constraints"); |
23 |
|
|
24 |
0
|
suite.addTestSuite(LitTest.class); |
25 |
0
|
suite.addTestSuite(WatchedPBConstrWithClauseLearningTest.class); |
26 |
0
|
suite.addTestSuite(PuebloWatchedPBConstrWithClauseLearningTest.class); |
27 |
0
|
suite.addTestSuite(CounterPBConstrWithClauseLearningTest.class); |
28 |
0
|
suite.addTestSuite(WatchedPBConstrWithPBConstrLearningTest.class); |
29 |
0
|
suite.addTestSuite(PuebloWatchedPBConstrWithPBConstrLearningTest.class); |
30 |
0
|
suite |
31 |
|
.addTestSuite(PuebloWatchedPbClauseAtLeastConstrWithPBConstrLearningTest.class); |
32 |
0
|
suite |
33 |
|
.addTestSuite(PuebloWatchedPBClauseCardConstrWithPBConstrLearningTest.class); |
34 |
0
|
suite.addTestSuite(CounterPBConstrWithPBConstrLearningTest.class); |
35 |
0
|
suite |
36 |
|
.addTestSuite(CounterPBConstrClauseImpliedWithClauseCardConstrLearning.class); |
37 |
0
|
suite |
38 |
|
.addTestSuite(CounterPBConstrWithClauseCardConstrLearningTest.class); |
39 |
0
|
suite |
40 |
|
.addTestSuite(CounterPBConstrWithClauseAtLeastConstrLearningTest.class); |
41 |
0
|
suite |
42 |
|
.addTestSuite(CounterPBConstrWithCBClauseCardConstrLearningTest.class); |
43 |
|
|
44 |
0
|
suite.addTestSuite(WatchedCardConstrOnRandomCardProblemsTest.class); |
45 |
0
|
suite.addTestSuite(CounterCardConstrOnRandomCardProblemsTest.class); |
46 |
0
|
suite.addTestSuite(WatchedPBConstrOnRandomCardProblemsTest.class); |
47 |
0
|
suite.addTestSuite(PuebloWatchedPBConstrOnRandomCardProblemsTest.class); |
48 |
0
|
suite.addTestSuite(CounterPBConstrOnRandomCardProblemsTest.class); |
49 |
0
|
suite |
50 |
|
.addTestSuite(CounterPBWithClauseCardConstrLearningReduceToClauseTest.class); |
51 |
|
|
52 |
0
|
return suite; |
53 |
|
} |
54 |
|
} |