<?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/"
		>
<channel>
	<title>Comments on: Unit testing makes coding more fun</title>
	<atom:link href="http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/</link>
	<description>it and development at europe's leading clubbing community</description>
	<lastBuildDate>Mon, 09 Aug 2010 07:13:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Elijah Insua</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-8583</link>
		<dc:creator>Elijah Insua</dc:creator>
		<pubDate>Wed, 06 Aug 2008 19:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-8583</guid>
		<description>Good article, I&#039;ve written a tool that illeviates the need for running the tests on the command line (making refactoring/coding even more fun!).
Basically it&#039;s an ajax&#039;d web application that automatically runs tests and caches their dependencies.
The beauty of the dependency cache is that when you change a source file, all of the tests associated with it are automatically re-run.
Tests can be written for files that do not exist, or contain fatal errors, etc.

Its available here: &lt;a href=&quot;http://www.blerby.com/project/testrunner&quot; rel=&quot;nofollow&quot;&gt;http://www.blerby.com/project/testrunner&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Good article, I&#8217;ve written a tool that illeviates the need for running the tests on the command line (making refactoring/coding even more fun!).<br />
Basically it&#8217;s an ajax&#8217;d web application that automatically runs tests and caches their dependencies.<br />
The beauty of the dependency cache is that when you change a source file, all of the tests associated with it are automatically re-run.<br />
Tests can be written for files that do not exist, or contain fatal errors, etc.</p>
<p>Its available here: <a href="http://www.blerby.com/project/testrunner" rel="nofollow">http://www.blerby.com/project/testrunner</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mastodont</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-6239</link>
		<dc:creator>Mastodont</dc:creator>
		<pubDate>Sun, 22 Jun 2008 09:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-6239</guid>
		<description>... Without a unit test framework I would have had to test it via the web based front end ...

Why? You can call class methods without UI. Simple cycle with different arguments suffices.</description>
		<content:encoded><![CDATA[<p>&#8230; Without a unit test framework I would have had to test it via the web based front end &#8230;</p>
<p>Why? You can call class methods without UI. Simple cycle with different arguments suffices.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silvan Mühlemann</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5991</link>
		<dc:creator>Silvan Mühlemann</dc:creator>
		<pubDate>Tue, 10 Jun 2008 20:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5991</guid>
		<description>@mysterious me: To test the form you need functional tests. &lt;a href=&quot;http://selenium.openqa.org&quot; rel=&quot;nofollow&quot;&gt;Selenium&lt;/a&gt; would help you on that one. 

Currently we are doing these manually as we have not found an efficient way to program them with Selenium (Selenium IDE did not help us much on that one due to a high cost for setting up the fixture and many special cases to cover). Maybe someone else has a clue?</description>
		<content:encoded><![CDATA[<p>@mysterious me: To test the form you need functional tests. <a href="http://selenium.openqa.org" rel="nofollow">Selenium</a> would help you on that one. </p>
<p>Currently we are doing these manually as we have not found an efficient way to program them with Selenium (Selenium IDE did not help us much on that one due to a high cost for setting up the fixture and many special cases to cover). Maybe someone else has a clue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Me</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5959</link>
		<dc:creator>Me</dc:creator>
		<pubDate>Mon, 09 Jun 2008 23:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5959</guid>
		<description>How do you do the actual tests? You can test the different php functions, but there can still be errors in the html code (forms) which you wouldn&#039;t find in your tests.

Did you create something on your own to test the actual websites (eg. with login etc...). How do you to these tests?


(The not so mysterious me ;))</description>
		<content:encoded><![CDATA[<p>How do you do the actual tests? You can test the different php functions, but there can still be errors in the html code (forms) which you wouldn&#8217;t find in your tests.</p>
<p>Did you create something on your own to test the actual websites (eg. with login etc&#8230;). How do you to these tests?</p>
<p>(The not so mysterious me <img src='http://techblog.tilllate.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#124; Webgedanken</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5921</link>
		<dc:creator>&#124; Webgedanken</dc:creator>
		<pubDate>Sun, 08 Jun 2008 17:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5921</guid>
		<description>[...] Techblog von Tilllateberichtet darüber dass man mit Unit-Tests mehr Spaß am Programmiern haben kann . Er schreibt über die Vorteile von Unit-Tests und über bestimmte Test-Frameworks wie PHPUnit. [...]</description>
		<content:encoded><![CDATA[<p>[...] Techblog von Tilllateberichtet darüber dass man mit Unit-Tests mehr Spaß am Programmiern haben kann . Er schreibt über die Vorteile von Unit-Tests und über bestimmte Test-Frameworks wie PHPUnit. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Impey</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5735</link>
		<dc:creator>Robert Impey</dc:creator>
		<pubDate>Tue, 03 Jun 2008 20:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5735</guid>
		<description>I definitely find TDD more fun. 

When I&#039;m writing the tests, I feel like a demanding guest at a restaurant, making the most obscure requests I can imagine. I try not to think about how the code will work but what I need it to do. I even try to forget that I&#039;m going to have to write the code that passes the tests and imagine that a junior temp will have to make the program work.

Once the tests are in place, coding is also more fun.  As the program is fleshed out you get a satisfaction like ticking the items of a list. 

You&#039;re also more free to experiment with different algorithms and so on so long as the code passes all the tests.</description>
		<content:encoded><![CDATA[<p>I definitely find TDD more fun. </p>
<p>When I&#8217;m writing the tests, I feel like a demanding guest at a restaurant, making the most obscure requests I can imagine. I try not to think about how the code will work but what I need it to do. I even try to forget that I&#8217;m going to have to write the code that passes the tests and imagine that a junior temp will have to make the program work.</p>
<p>Once the tests are in place, coding is also more fun.  As the program is fleshed out you get a satisfaction like ticking the items of a list. </p>
<p>You&#8217;re also more free to experiment with different algorithms and so on so long as the code passes all the tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silvan Mühlemann</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5660</link>
		<dc:creator>Silvan Mühlemann</dc:creator>
		<pubDate>Mon, 02 Jun 2008 06:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5660</guid>
		<description>@Mike: &quot;more fun / less boring&quot; is like &quot;the glass is half full / half empty&quot; :-)

@Joe: You know, I am so fast writing those tests. The time it takes me to write them is negligible :-P</description>
		<content:encoded><![CDATA[<p>@Mike: &#8220;more fun / less boring&#8221; is like &#8220;the glass is half full / half empty&#8221; <img src='http://techblog.tilllate.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>@Joe: You know, I am so fast writing those tests. The time it takes me to write them is negligible <img src='http://techblog.tilllate.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5654</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 01 Jun 2008 23:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5654</guid>
		<description>I think &quot;fun&quot; is pushing it a bit but it certainly makes it less boring.</description>
		<content:encoded><![CDATA[<p>I think &#8220;fun&#8221; is pushing it a bit but it certainly makes it less boring.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://techblog.tilllate.com/2008/06/01/unit-testing-makes-coding-more-fun/comment-page-1/#comment-5653</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 01 Jun 2008 23:08:11 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/?p=341#comment-5653</guid>
		<description>Yeah, but how long to write the test? :)

(not bashing unit testing, you just didn&#039;t mention it, thats all)

the positives are clear, your test is 100% repeatable, whereas filling in the form manually is not :)</description>
		<content:encoded><![CDATA[<p>Yeah, but how long to write the test? <img src='http://techblog.tilllate.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(not bashing unit testing, you just didn&#8217;t mention it, thats all)</p>
<p>the positives are clear, your test is 100% repeatable, whereas filling in the form manually is not <img src='http://techblog.tilllate.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

