I am working with a web project running on a remote server, and I implement Jacoco in the project with maven. For the unit tests, I have already generate ut reports with the help of jacoco maven plugin. And the report can be viewed on the server side correctly.
Besides, I also have a automation test through restAPI on my local machine. In order to get coverage report of API test, I configured another jacoco agent running on the remote web server, so that I can dump the coverage report of the API tests also.
The two reports seem good now. The only problem is, can I dump the ut test report/exec file from the remote server to my local machine? I would love to merge these two into one and resolve it on my local machine.
Thanks for your time looking at my problem.