Generate report from cobertura with out J-Unit tasks

277 Views Asked by At

My project do not have Junit and would prefer manual testing for code coverage testing. I have instrumented the code using ant and i have it as an ear. How i will configure the same in a weblogic1034 and how to take report after manual testing?

Thanks in advance.

1

There are 1 best solutions below

0
On

The instructions in the manual are fairly straightforward: if you instrumneted your classes directly into the EAR file, make sure to also include the cobertura.jar into the EAR file as well (under the 'lib/' sub-folder within the archive).

Then deploy your app and start it up normally. When you perform manual testing, a (cobertura).ser file will be produced in the working directory of your app server instance.

Upon completion of your testing, you must shutdown your app server and make sure the JVM exits in order to flush the coverage data to the .ser file.

Finally convert the .ser file into a report using ant or the command-line utility.