Jacoco coverage report has 0 coverage, although junit tests run with 100% coverage
Hi Everyone,
I have a workflow process class and a junit test class for it. Junit tests run successfully. However, Jacoco reports 0% coverage. It seems to ignore this class because of the annotation:
@RunWith(MockitoJUnitRunner.class)
I'd like to use the new @ExtendWith(MockitoExtension.class), but I'm not successful in getting the tests to run successfully. I haven't seen an example of this Junit5 notation used for Workflow processes. There are recent unit test examples for workflow processes here: https://github.com/Adobe-Consulting-Services/acs-aem-commons/blob/master/bundle/src/test/java/com/adobe/acs/commons/dam/RenditionModifyingProcessTest.java , but that's using the Junit 4 too.
Any help with how to get Jacoco to pick up this notation.
Thanks.