Suggestions for Automated Code coverage for an Eclipse RCP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T04:39:29Z http://stackoverflow.com/feeds/question/288127 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/288127/suggestions-for-automated-code-coverage-for-an-eclipse-rcp 3 Suggestions for Automated Code coverage for an Eclipse RCP? jamesh 2008-11-13T20:16:22Z 2009-04-29T11:50:32Z <p>I would like to include some code coverage into our nightly build process. We're using CruiseControl, Ant, and Buckminster. Buckminster drives checkout from multiple repositories, and the PDE building and packaging of the product.</p> <p><strong>Has any one any experience integrating code coverage into an RCP headless build?</strong></p> <p>I have been looking at Cobertura, EMMA/EclEMMA, DbUnit though am very interested to hear of any experiences with these or any other tools. </p> http://stackoverflow.com/questions/288127/suggestions-for-automated-code-coverage-for-an-eclipse-rcp/296506#296506 3 Answer by jamesh for Suggestions for Automated Code coverage for an Eclipse RCP? jamesh 2008-11-17T19:02:24Z 2008-11-17T19:02:24Z <p>Cobertura seemed to be able to do the job for us. </p> <p>Once the unit tests were running (a question all to itself), I was able to:</p> <ul> <li>instrument the bundles as standalone Jars.</li> <li>re-run the unit tests with a cobertura on the parent class loader class path. </li> </ul> <p>The trick here is to use <code>osgi.parentClassloader=app</code> in the config.ini file used to run the unit test.</p> <ul> <li><code>ext</code> == Java extensions</li> <li><code>boot</code> == the boot class loader (default)</li> <li><code>fwk</code> == framework?</li> <li><code>app</code> == application, i.e. just like a normal application, with a classpath specified on the command line.</li> </ul> <p>The instrumented code needed runtime access to the cobertura jar, so this last step was imperative. </p> http://stackoverflow.com/questions/288127/suggestions-for-automated-code-coverage-for-an-eclipse-rcp/355919#355919 1 Answer by Henrik for Suggestions for Automated Code coverage for an Eclipse RCP? Henrik 2008-12-10T12:44:49Z 2008-12-10T12:44:49Z <p>Check out this article on rcpquickstart: <a href="http://rcpquickstart.com/2008/08/04/updated-pde-build-and-test-example/" rel="nofollow">http://rcpquickstart.com/2008/08/04/updated-pde-build-and-test-example/</a></p> <p>It describes how to get Emma and Corbetura working.</p> http://stackoverflow.com/questions/288127/suggestions-for-automated-code-coverage-for-an-eclipse-rcp/801996#801996 0 Answer by marc for Suggestions for Automated Code coverage for an Eclipse RCP? marc 2009-04-29T11:50:32Z 2009-04-29T11:50:32Z <p>EclEmma now has a additional component called "EclEmma Equinox Runtime" that provides headless code coverage analysis for any OSGi/Equinox application:</p> <p><a href="http://www.eclemma.org/devdoc/headless.html" rel="nofollow">http://www.eclemma.org/devdoc/headless.html</a></p>