On Thursday, 27 October 2016 15:41:01 UTC+5:30, Marc R. Hoffmann wrote:
> Hi Sriram,
>
>
>
> you need to create an report with the tools provided with JaCoCo.
> For report generation you need
>
>
>
> 1) exec files
>
> 2) Same class files (or JARs) used at runtime
>
> 3) Optionally source files (for hilighting)
>
>
>
> JaCoCo comes with a report Maven goal or Ant task. Alternatively
> you could use the Java API or any other build tool with JaCoCo
> integration:
>
>
>
>
> http://www.jacoco.org/jacoco/trunk/doc/report-mojo.html
> http://www.jacoco.org/jacoco/trunk/doc/ant.html#report
>
> http://www.jacoco.org/jacoco/trunk/doc/examples/java/ReportGenerator.java
>
>
>
> Regards,
>
> -marc
>
>
>
> On 27.10.16 12:06, [email protected] wrote:
>
>
>
> Hi,
>
> We are planning to generate Code Coverage reports for our manual testing for
> the web application hosted on Weblogic.
>
> The intention is that, we want to run some tests on the application and see
> the code coverage and depending on that, we want to improve our tests.
>
> I have added jacocoagent.jar in setDomainEnv.sh. Then I started the weblogic
> managed server and the application was up. I logged in into the application
> and performed some operations and shutdown the AppServer. Now I have a
> jacoco.exec file.
>
> How do i check the contents of this file? How can this be represented in a
> xml or html format? We dont have access to the actual source code as we are
> testers and we dont have automated tests also in this context.
>
> Ccan some one please help me with addressing this issue?
>
> Thanks in advance!
>
> Regards,
> Sriram
Hi Marc,
As you mentioned, I have used Jacoco.exec and the class files of our product.
Coverage Report is successfully generated. But for this, I needed to extract
the jars and unzip them and point to that folder. But, in our installation, we
only have jar files and class files are not visible, unless we explicitly unzip
them.
I tried to include jars but, I always get an error "Error while creating report"
Is there a way that I can generated Code coverage reports for jars but not
classes? Iam adding my target code for your convenience.
***********************************************
<target name="report">
<mkdir dir="${jacoco.report.dir}"/>
<jacoco:report>
<executiondata>
<file file="${jacocoexec.fullpath}"/>
</executiondata>
<structure name="Code coverage Report">
<classfiles>
<fileset dir="${classes.dir}" />
</classfiles>
<sourcefiles encoding="UTF-8">
<fileset file="${src.dir}/*.jar"/>
</sourcefiles>
</structure>
<html destdir="${jacoco.report.dir}"/>
<csv destfile="${jacoco.report.dir}/report.csv"/>
<xml destfile="${jacoco.report.dir}/report.xml"/>
</jacoco:report>
</target>
*************************************************
--
You received this message because you are subscribed to the Google Groups
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jacoco/b2b01174-52a9-48fa-aa12-f5ccbd6fdc45%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.