| 1 |
|
package com.puppycrawl.tools.checkstyle.checks.duplicates; |
| 2 |
|
|
| 3 |
|
import junit.framework.Test; |
| 4 |
|
import junit.framework.TestSuite; |
| 5 |
|
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
| 6 |
|
public class AllTests { |
| 7 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 8 |
0
|
public static void main(String[] args) {... |
| 9 |
0
|
junit.textui.TestRunner.run(AllTests.suite()); |
| 10 |
|
} |
| 11 |
|
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
| 12 |
0
|
public static Test suite() {... |
| 13 |
0
|
TestSuite suite = |
| 14 |
|
new TestSuite("Test for com.puppycrawl.tools.checkstyle.checks.duplicates"); |
| 15 |
|
|
| 16 |
0
|
suite.addTest(new TestSuite(StrictDuplicateCodeCheckTest.class)); |
| 17 |
|
|
| 18 |
0
|
return suite; |
| 19 |
|
} |
| 20 |
|
} |