Re: Test Coverage Mapping

2017-11-10 Thread Mark Bretl
Yea, the integration into the Apache SonarQube dropped off at some point. I can look into it again. As for the coverage for tests, take a look at $root/gradle/code-analysis.gradle for seeing how code coverage works now. I think we have 'test integrationTest distributedTest' configured for creating

Re: Test Coverage Mapping

2017-11-10 Thread Dan Smith
Sorry, wrong link. I think they updated analysis.apache.org to this: https://builds.apache.org/analysis -Dan On Fri, Nov 10, 2017 at 2:00 PM, Dan Smith wrote: > We have some support in our gradle build to run tests coverage manually > with something like this: > > ../gradlew clean test integra

Re: Test Coverage Mapping

2017-11-10 Thread Dan Smith
We have some support in our gradle build to run tests coverage manually with something like this: ../gradlew clean test integrationTest distributedTest acceptanceTest -PcodeCoverage jacocoOverallTestReport This should generate a code coverage report. At one point I know we were talking about int

Test Coverage Mapping

2017-11-10 Thread Patrick Rhomberg
Hello, all. While looking at expanding testing coverage, the natural question arose: what does the existing test coverage map look like? Does anyone know if we have an existing code-coverage analysis done as part of our testing? If there is, does anyone know if our DUnitTests or AcceptanceTes