<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Straight from the Heart</title>
	<atom:link href="http://simplymanu.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://simplymanu.wordpress.com</link>
	<description>Some Ineffable, Perplex, Untouched thoughts......</description>
	<lastBuildDate>Wed, 01 Apr 2009 06:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on EMMA: a free Java code coverage tool by sujai</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-79</link>
		<dc:creator>sujai</dc:creator>
		<pubDate>Wed, 01 Apr 2009 06:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-79</guid>
		<description>The links you gave are very much useful. They are very much basic and I too explored them through the net :)</description>
		<content:encoded><![CDATA[<p>The links you gave are very much useful. They are very much basic and I too explored them through the net <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by sujai</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-78</link>
		<dc:creator>sujai</dc:creator>
		<pubDate>Wed, 01 Apr 2009 06:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-78</guid>
		<description>Hi Manu,
Sorry for the late reply..

I&#039;ll elloborate my requirements:

* A GUI should be designed which prompts the user to select a package.

* It will then display all the methods in the classes of the selected package.

* The user needs to select a method to test.

* The user needs to enter the expected and actual results for the JUnit test of the selected method.

* The JUnit test is now executed and the result states that whether the test has passed or not.
(upto this stage, I have completed). The problem starts from here:

* The actual and expected results which are fed for the test should be extracted and stored in a file (say a text document).
(this should be done for all the tests which are encountered by the method)

* When a method is tested again, the actual and expected results should be imported from these files and also we need to feed them through the GUI.

* In between, the test (the input we feed through the GUI) which we do through the GUI should undergo code coverage analysis

I talked to my guide about the usage of Selenium RC, but he insists me to concentrate on this GUI first :(</description>
		<content:encoded><![CDATA[<p>Hi Manu,<br />
Sorry for the late reply..</p>
<p>I&#8217;ll elloborate my requirements:</p>
<p>* A GUI should be designed which prompts the user to select a package.</p>
<p>* It will then display all the methods in the classes of the selected package.</p>
<p>* The user needs to select a method to test.</p>
<p>* The user needs to enter the expected and actual results for the JUnit test of the selected method.</p>
<p>* The JUnit test is now executed and the result states that whether the test has passed or not.<br />
(upto this stage, I have completed). The problem starts from here:</p>
<p>* The actual and expected results which are fed for the test should be extracted and stored in a file (say a text document).<br />
(this should be done for all the tests which are encountered by the method)</p>
<p>* When a method is tested again, the actual and expected results should be imported from these files and also we need to feed them through the GUI.</p>
<p>* In between, the test (the input we feed through the GUI) which we do through the GUI should undergo code coverage analysis</p>
<p>I talked to my guide about the usage of Selenium RC, but he insists me to concentrate on this GUI first <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Manu</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-77</link>
		<dc:creator>Manu</dc:creator>
		<pubDate>Sat, 28 Mar 2009 08:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-77</guid>
		<description>What i got from the above write-up that you have a web application which take some data through GUI and perform some operations on that data, which eventually give results.

Some confusions-

want to import test data for JUnit from external source i.e., I need to maintain test data alone in a separate file.

what is this external source. are u providing data through UI and storing into a file.

what operation you are doing on that test data. Some methods are involve in thses operations. you need to use those methods in your unit tests (junit). junit is used for writing unit test cases to test java code, for functional (UI) testcases selenium is good choice.

after the completeion of these test cases, emma will come in picture for code coverage.

refer these link..

http://www.thekirschners.com/articles/how-to-write-test-cases.html


http://blog.taragana.com/index.php/archive/9-important-tips-for-selenium-remote-control-java-client-test-tool/


Let me know if it helps.

Cheers,
Manish</description>
		<content:encoded><![CDATA[<p>What i got from the above write-up that you have a web application which take some data through GUI and perform some operations on that data, which eventually give results.</p>
<p>Some confusions-</p>
<p>want to import test data for JUnit from external source i.e., I need to maintain test data alone in a separate file.</p>
<p>what is this external source. are u providing data through UI and storing into a file.</p>
<p>what operation you are doing on that test data. Some methods are involve in thses operations. you need to use those methods in your unit tests (junit). junit is used for writing unit test cases to test java code, for functional (UI) testcases selenium is good choice.</p>
<p>after the completeion of these test cases, emma will come in picture for code coverage.</p>
<p>refer these link..</p>
<p><a href="http://www.thekirschners.com/articles/how-to-write-test-cases.html" rel="nofollow">http://www.thekirschners.com/articles/how-to-write-test-cases.html</a></p>
<p><a href="http://blog.taragana.com/index.php/archive/9-important-tips-for-selenium-remote-control-java-client-test-tool/" rel="nofollow">http://blog.taragana.com/index.php/archive/9-important-tips-for-selenium-remote-control-java-client-test-tool/</a></p>
<p>Let me know if it helps.</p>
<p>Cheers,<br />
Manish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Sujai</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-76</link>
		<dc:creator>Sujai</dc:creator>
		<pubDate>Fri, 27 Mar 2009 08:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-76</guid>
		<description>Hi Manu,

Thanks for replying. Actually my project is to automate the testing process for a web application. I was able to run a basic build file which uses the money sample package from JUnit.
 
I want to import test data for JUnit from external source i.e., I need to maintain test data alone in a separate file. Whenever JUnit is executed, actual and expected results should be imported from the test data.

All these processes should be done through a GUI :(</description>
		<content:encoded><![CDATA[<p>Hi Manu,</p>
<p>Thanks for replying. Actually my project is to automate the testing process for a web application. I was able to run a basic build file which uses the money sample package from JUnit.</p>
<p>I want to import test data for JUnit from external source i.e., I need to maintain test data alone in a separate file. Whenever JUnit is executed, actual and expected results should be imported from the test data.</p>
<p>All these processes should be done through a GUI <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Manu</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-75</link>
		<dc:creator>Manu</dc:creator>
		<pubDate>Fri, 27 Mar 2009 07:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-75</guid>
		<description>Thanks Ram.</description>
		<content:encoded><![CDATA[<p>Thanks Ram.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Manu</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-74</link>
		<dc:creator>Manu</dc:creator>
		<pubDate>Fri, 27 Mar 2009 07:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-74</guid>
		<description>Hi Sujai,

I will be happy to help you out, tell me what exactly your project is. 

before creating build target, read some stuff regarding junit and ant (prefer their official sites). emma is easy to learn but you need to cover unit and functional test cases for your project.

Cheers,
manish</description>
		<content:encoded><![CDATA[<p>Hi Sujai,</p>
<p>I will be happy to help you out, tell me what exactly your project is. </p>
<p>before creating build target, read some stuff regarding junit and ant (prefer their official sites). emma is easy to learn but you need to cover unit and functional test cases for your project.</p>
<p>Cheers,<br />
manish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Ramkumar</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-72</link>
		<dc:creator>Ramkumar</dc:creator>
		<pubDate>Sun, 22 Mar 2009 16:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-72</guid>
		<description>Quite good and simple knowledge transfer for effective results.</description>
		<content:encoded><![CDATA[<p>Quite good and simple knowledge transfer for effective results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Sujai</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-70</link>
		<dc:creator>Sujai</dc:creator>
		<pubDate>Tue, 17 Mar 2009 09:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-70</guid>
		<description>Hi Manu,
thats really a cool one. I am a novice to JUnit, Emma and Ant. I have chose to integrate these three technologies as my project. It will be helpful to me if you help me to start from the scratch.</description>
		<content:encoded><![CDATA[<p>Hi Manu,<br />
thats really a cool one. I am a novice to JUnit, Emma and Ant. I have chose to integrate these three technologies as my project. It will be helpful to me if you help me to start from the scratch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Manu</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-69</link>
		<dc:creator>Manu</dc:creator>
		<pubDate>Tue, 10 Mar 2009 07:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-69</guid>
		<description>Hi Naresh,
smtimes this file gets created after stop jboss action, idealy it should created w/o stopping jboss. just stop jboss and coverage.ec file will get created in the bin folder.

Cheers,
Manish</description>
		<content:encoded><![CDATA[<p>Hi Naresh,<br />
smtimes this file gets created after stop jboss action, idealy it should created w/o stopping jboss. just stop jboss and coverage.ec file will get created in the bin folder.</p>
<p>Cheers,<br />
Manish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EMMA: a free Java code coverage tool by Naresh</title>
		<link>http://simplymanu.wordpress.com/2008/07/28/emma-a-free-java-code-coverage-tool/#comment-68</link>
		<dc:creator>Naresh</dc:creator>
		<pubDate>Thu, 05 Mar 2009 10:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://simplymanu.wordpress.com/?p=124#comment-68</guid>
		<description>Hi Manu,

i am working on enterprise application. i created a metadata.emma and add it to the my ear fille and copy this ear in deploy folder of jboss.

i run my application and navigate to all the pages but i didnt see any file like coverage.ec in Jboss/bin.

Please help me on this. Thanks in advance...</description>
		<content:encoded><![CDATA[<p>Hi Manu,</p>
<p>i am working on enterprise application. i created a metadata.emma and add it to the my ear fille and copy this ear in deploy folder of jboss.</p>
<p>i run my application and navigate to all the pages but i didnt see any file like coverage.ec in Jboss/bin.</p>
<p>Please help me on this. Thanks in advance&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
