具有两个输出的 jacoco:文件和 tcpserver
jacoco with both outputs: file and tcpserver
我在 JDK8 项目中使用 eclipse 2019-12,我想检查覆盖率,因为我正在通过 Web 浏览器使用 Web 应用程序。
为此,我在 eclipse 中配置了 Tomcat Server 8 并启动了两个选项(都可以):
-javaagent:"/tools/eclipse/dropins/jacoco-0.8.7/lib/jacocoagent.jar=output=tcpserver,address=127.0.0.1,port=8011,includes=com.mypckg.*"
-javaagent:"C:\finconsum\tools\eclipse\dropins\jacoco-0.8.7\lib\jacocoagent.jar=output=file,destfile=/tmp/jacoco.exec,append=true,includes=com.mypckg.*"
由于我需要检查我在执行过程中所涵盖的内容并存储结果以供将来查看,是否有任何选项可以将两个输出组合在一起以进行相同的执行?
is there any option to combine both outputs for the same execution?
根据https://www.jacoco.org/jacoco/trunk/doc/agent.html
output
选项的有效值为
- file
- tcpserver
- tcpclient
- none
所以没有“合并”,但是在执行的情况下
-javaagent:"/tools/eclipse/dropins/jacoco-0.8.7/lib/jacocoagent.jar=output=tcpserver,address=127.0.0.1,port=8011,includes=com.mypckg.*"
连接到服务器后,您的客户端可以检索数据并将其存储在文件中。
我在 JDK8 项目中使用 eclipse 2019-12,我想检查覆盖率,因为我正在通过 Web 浏览器使用 Web 应用程序。 为此,我在 eclipse 中配置了 Tomcat Server 8 并启动了两个选项(都可以):
-javaagent:"/tools/eclipse/dropins/jacoco-0.8.7/lib/jacocoagent.jar=output=tcpserver,address=127.0.0.1,port=8011,includes=com.mypckg.*"
-javaagent:"C:\finconsum\tools\eclipse\dropins\jacoco-0.8.7\lib\jacocoagent.jar=output=file,destfile=/tmp/jacoco.exec,append=true,includes=com.mypckg.*"
由于我需要检查我在执行过程中所涵盖的内容并存储结果以供将来查看,是否有任何选项可以将两个输出组合在一起以进行相同的执行?
is there any option to combine both outputs for the same execution?
根据https://www.jacoco.org/jacoco/trunk/doc/agent.html
output
选项的有效值为
- file
- tcpserver
- tcpclient
- none
所以没有“合并”,但是在执行的情况下
-javaagent:"/tools/eclipse/dropins/jacoco-0.8.7/lib/jacocoagent.jar=output=tcpserver,address=127.0.0.1,port=8011,includes=com.mypckg.*"
连接到服务器后,您的客户端可以检索数据并将其存储在文件中。