How to visualize integration tests in sonar?
Currently, I only see:
- global reach (UT + IT)
- amount of UT

I read somewhere that we needed to configure the widget in the GUI: I did not see any option that could do this.
Documentation Status:
If unit test coverage is not calculated using JaCoCo, overall coverage = integration test coverage.
But in my case, I see that coverage changes when I change my UT (or IT). Moreover, I see jacoco reports in reports:
- jacoco.exec
- jacoco-it.exec
I finally tried the official sonar samples: it's the same! I did not find a single sample with a clear separation between:
- Unit test coverage
- Integration Testing
- Overall testing coverage
And sorry, Sonar documents and samples need to be improved ...
Context: sonar6.2, java8, spring loading, modular project, maven, confidence and fault tolerance
source share