Gradle 'Jacoco' plugin's 'jacocoTestReport' generates code coverage report for all the unit tests.
How should I proceed to create a gradle task to generate 'Jacoco' code coverage reports of each unit test individually?
HelloWorld.java
HelloWorldTest.java contains Test1, Test2, Test3 methods
I want to generate individual Jacoco code coverage report for Test1, Test2, Test3 methods.