Hello everyone,
I am working on showing coverage of the integration test. My project is running on wildfly docker container
I have already followed these step:
- copy jacoco agent jar to container
- add -javaagent:/var/opt/twint/jacoco/jacocoagent.jar=destfile=/var/opt/twint/jacoco/jacoco.exec,includes=com.java.example.*,append=true,output=file,address=* to JAVA_OPTS.
- Run integration test
- Stop jboss , and reconnect
- the jacoco.exec right now have data. but when I check it, I just see it record jboss data. Seem like it not record any request from Integration test.
Is there anyone help me on this? :(