Accepts all files with the given file name (default: jacocoTestReport.xml) or being in a directory named 'jacoco' and end with '.xml'.
Name | Description |
---|---|
jqassistant.plugin.jacoco.filename |
Optional: file name of the JaCoCo XML report file. Default: jacocoTestReport.xml |
jqassistant.plugin.jacoco.dirname |
Optional: directory of the JaCoCo XML report file. Default: jacoco |
Represents a JaCoCo report file.
Name | Description |
---|---|
name |
Name of the report file. |
Name | Target label(s) | Cardinality | Description |
---|---|---|---|
HAS_PACKAGE |
0..n |
A Java package containing the Java classes for which the test coverage were recorded. |
Represents a coverage metric: missed and covered lines and branches.
Name | Description |
---|---|
type |
Type of metric: INSTRUCTION, BRANCH, LINE, COMPLEXITY, METHOD. |
missed |
Number of missed things of the metric. |
covered |
Number of covered things of the metric. |
Represents a Java method in the Jacoco report.
Name | Description |
---|---|
name |
The name of the method. |
signature |
The signature of the method. |
line |
The line of the first statement of the method. |
Name | Target label(s) | Cardinality | Description |
---|---|---|---|
HAS_COUNTER |
0..n |
The test coverage results: missed and covered lines and branches. |
Represents a Java class in the Jacoco report.
Name | Description |
---|---|
name |
The name of the class. |
fqn |
The fully qualified name of the class. |
Name | Target label(s) | Cardinality | Description |
---|---|---|---|
HAS_METHOD |
0..n |
A Java method for which the test coverage were recorded. |
Represents a Java package containing the Java classes for which the test coverage were recorded.
Name | Target label(s) | Cardinality | Description |
---|---|---|---|
HAS_CLASS |
0..n |
A Java class for which the test coverage were recorded. |