<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Software on a smoking barrel &#187; eclemma</title>
	<atom:link href="http://www.margelatu.org/tag/eclemma/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.margelatu.org</link>
	<description></description>
	<lastBuildDate>Thu, 06 Oct 2011 14:01:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Java code coverage reports in Eclipse</title>
		<link>http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=java-code-coverage-reports-in-eclipse</link>
		<comments>http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 11:38:35 +0000</pubDate>
		<dc:creator>Ionut-Maxim Margelatu</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[code coverage]]></category>
		<category><![CDATA[eclemma]]></category>
		<category><![CDATA[TestNG]]></category>

		<guid isPermaLink="false">http://margelatu.org/?p=52</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/' addthis:title='Java code coverage reports in Eclipse '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>A part of our team&#8217;s &#8220;definition of done&#8221; is having unit-tests in place and, unofficially, a minimum of 80% code coverage. Our Maven-based build process runs the tests and then creates code coverage reports in HTML format, that we can then consult in the documentation that Maven generates. Along with other reports, this helps us [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/' addthis:title='Java code coverage reports in Eclipse ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/' addthis:title='Java code coverage reports in Eclipse '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>A part of our team&#8217;s &#8220;definition of done&#8221; is having unit-tests in place and, unofficially, a minimum of 80% code coverage. Our Maven-based build process runs the tests and then creates code coverage reports in HTML format, that we can then consult in the documentation that Maven generates. Along with other reports, this helps us get a clear picture of where our code is in terms of stability and quality.</p>
<p>This is all great ; but when you&#8217;re in the middle of a task and you write unit-tests, it&#8217;s quite tedious to run the build and then open the HTML coverage report just to monitor your code coverage. I spend about 80% of my time for a task in Eclipse : opening and activating tasks with Mylyn, coding, writing unit-tests, running unit-tests and so on. This is why for me it made sense to seek out a way to monitor the code coverage in Eclipse.</p>
<p>After a bit of googling, I found a Java code coverage plug-in for Eclipse : <a href="http://www.eclemma.org/" target="_blank">EclEmma</a>. As you can see from its name, it&#8217;s based on the EMMA Java code coverage tool. Here&#8217;s a list with its main features :</p>
<ul>
<li>a <em>coverage</em> mode in which applications launched or unit tests are instrumented and measured</li>
<li>coverage overview : a coverage view containing a report on the source code coverage values at project-level, package-level and class-level</li>
<li>source highlighting in the Java code editor using customizable colors</li>
<li>customizable coverage counters</li>
<li>multiple coverage sessions and session merging</li>
<li>importing EMMA coverage data files</li>
<li>exporting to EMMA coverage data, XML and HTML</li>
</ul>
<p>The easiest way to install it is through the update site : <a href="http://update.eclemma.org/" target="_blank">http://update.eclemma.org</a>. After the installation, you will notice a new launch mode appearing in the Eclipse toolbar, called <em><strong>Coverage</strong></em>, similar to the <em><strong>Run</strong></em> and <em><strong>Debug</strong></em> modes. This new mode allows you to run coverage reports on applications or unit-tests just like you would before run those applications or unit-tests.</p>
<p>In a project I&#8217;m currently working on, our server-side unit tests are written using TestNG. From Eclipse, I can run one or multiple TestNG units using the Eclipse TestNG plug-in, so I can easily verify that my code passes the unit tests. I have defined a launch configuration for each server-side project which runs all of the unit-tests. To check out the code coverage for those tests, all I have to do is create a coverage configuration and make sure that I select the source code folders to be instrumented.</p>
<p>I created a sample Java-Maven-TestNG project and added to it a simple class called <strong><em>ShoppingCartImpl</em></strong> along with a TestNG test class. Here&#8217;s how it looks :</p>
<div id="attachment_55" class="wp-caption aligncenter" style="width: 1034px"><img src="http://margelatu.org/wp-content/uploads/2009/06/eclemma_sample_cart_source_code-1024x587.png" alt="Source code of a very basic shopping cart" title="Source code of a very basic shopping cart" width="1024" height="587" class="size-large wp-image-55" /><p class="wp-caption-text">Source code of a very basic shopping cart</p></div>
<p>As you can see, this is a very basic class. Now on to configuring the coverage settings ; this is a simple matter of clicking on the <strong>Coverage</strong> button in Eclipse&#8217;s toolbar and selecting the menu option <strong>Coverage Configurations&#8230;</strong>. This opens up the coverage configuration window, as seen below :</p>
<div id="attachment_56" class="wp-caption aligncenter" style="width: 956px"><img src="http://margelatu.org/wp-content/uploads/2009/06/eclemma_sample_coverage_configuration.png" alt="Creating a new EclEmma coverage configuration" title="Creating a new EclEmma coverage configuration" width="946" height="808" class="size-full wp-image-56" /><p class="wp-caption-text">Creating a new EclEmma coverage configuration</p></div>
<p>All I have to do is select the TestNG test suite that I want to run and check the source folders that are relevant to code coverage. I&#8217;m using Maven and all my source code is in <em>src/main/java</em> so I only select that folder. I click <strong>Apply</strong> and then I can finally run the coverage report. I click on the <strong>Coverage</strong> button and theTestNG configuration is executed and the coverage report is available :</p>
<div id="attachment_57" class="wp-caption aligncenter" style="width: 1034px"><img src="http://margelatu.org/wp-content/uploads/2009/06/eclemma_sample_coverage_after_first_run-1024x587.png" alt="Code coverage report after a first run" title="Code coverage report after a first run" width="1024" height="587" class="size-large wp-image-57" /><p class="wp-caption-text">Code coverage report after a first run</p></div>
<p>In the bottom of the Eclipse window, you get a clear picture of the code coverage. As you can see, the are reports at project, package and class level, which also show up in the package explorer, in the left. To enable the decorators in the package explorer, go to the Eclipse menu and select <em>Preferences</em> -&gt; <em>General</em> -&gt; <em>Appearance</em> -&gt; <em>Label decorations</em>, then make sure that the <strong><em>Java Code Coverage</em></strong> label decoration option is checked.</p>
<p>Another interesting feature of EclEmma is that after the code coverage instrumentation you can actually see the coverage in the source code. As you can see, each line relevant to the coverage report is marked with a color. Green is for 100% branch coverage, yellow is for some branch coverage and red for no coverage at all. The shopping cart has quite a low code coverage so I did shape it up. After a bit of fiddling with the code, I get a 100% code coverage and a very nice report :</p>
<p><div id="attachment_58" class="wp-caption aligncenter" style="width: 1034px"><img src="http://margelatu.org/wp-content/uploads/2009/06/eclemma_sample_full_coverage-1024x587.png" alt="The ShoppingCart class with 100% code coverage" title="The ShoppingCart class with 100% code coverage" width="1024" height="587" class="size-large wp-image-58" /><p class="wp-caption-text">The ShoppingCart class with 100% code coverage</p></div> <!-- PHP 5.x --></p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/' addthis:title='Java code coverage reports in Eclipse ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.margelatu.org/2009/06/25/java-code-coverage-reports-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 324/347 objects using disk: basic

Served from: www.margelatu.org @ 2011-10-15 18:49:03 -->
