Hello,
We are using sonarqube version 8.9 and jacoco-maven-plugin version 0.8.7.
We also use maven-sueerfire-plugin for unit tests and maven-failsafe-plugin for integration tests.
Maven config is the following:
<jacoco.version>0.8.7</jacoco.version>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.language>java</sonar.language>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml, target/site/jacoco-it/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
The reported coverage in sonarqube seems to be showing the combined coverage of both unit and integration tests. However in the left menu, I can only see Unit Tests, when I click on this link I can see the number of unit tests. Is it also possible to show the number of integration tests ? Why are they not all together so we can have a full overview of test classes ?
Thanks,
Lucas