Reputation: 1
I am using the SonarQube 4.5.7 API. I run SonarQube analysis on full Java codebase overnight (daily).
I want to retrieve test coverage data for a given Java class using the SonarQube API.
When I use following API (sample), it gives me current Test coverage. It doesn't gives me historic test coverage. For ex - what was coverage a week ago or a month ago.
Sample output
File: SampleProgram.java
Test Current (today): 99%
Test Current (1 week ago): 92%
Test Current (1 month ago): 96%
Is there any such single API?
Upvotes: 0
Views: 445