<?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>The Oxtremists</title>
	<atom:link href="http://www.oxtremists.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.oxtremists.co.uk</link>
	<description>Oxford-based tech discussion group.</description>
	<lastBuildDate>Thu, 05 Nov 2009 22:18:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>What next?</title>
		<link>http://www.oxtremists.co.uk/?p=207</link>
		<comments>http://www.oxtremists.co.uk/?p=207#comments</comments>
		<pubDate>Thu, 05 Nov 2009 22:18:27 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[discussions]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=207</guid>
		<description><![CDATA[Our last meeting (in October) was enjoyable, but now we need to choose another topic. I suggest we meet up to discuss it in January &#8211; we&#8217;ll have the Christmas break to do some reading. So add your suggestions in &#8230; <a href="http://www.oxtremists.co.uk/?p=207">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Our last meeting (in October) was enjoyable, but now we need to choose another topic. I suggest we meet up to discuss it in January &#8211; we&#8217;ll have the Christmas break to do some reading.  So add your suggestions in the comments &#8211; 3 books in order of preference, as usual. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=207</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Test Driven Development</title>
		<link>http://www.oxtremists.co.uk/?p=191</link>
		<comments>http://www.oxtremists.co.uk/?p=191#comments</comments>
		<pubDate>Fri, 30 Oct 2009 13:50:40 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[discussions]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[refactoring]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=191</guid>
		<description><![CDATA[There were six of us at the Lamb and Flag to discuss test driven development (TDD). I was joined by Miquel, Tom, David, Inigo and new boy Julian. The books chosen to kick off the discussion were two different books &#8230; <a href="http://www.oxtremists.co.uk/?p=191">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>There were six of us at the Lamb and Flag to discuss test driven development (TDD).  I was joined by Miquel, Tom, David, Inigo and new boy Julian. The books chosen to kick off the discussion were two different books called &#8220;Test Driven Development&#8221;, <a href="http://www.amazon.co.uk/Test-Driven-Development-Addison-Wesley-Signature/dp/0321146530/">the first by Kent Beck</a> and <a href="http://www.amazon.co.uk/Test-Driven-Development-Practical-Guide/dp/0131016490/">the second by Dave Astels</a>. </p>
<p>David revealed that he&#8217;d actually read a third book, <a href="http://www.amazon.co.uk/Test-Driven-Acceptance-Java-Developers/dp/1932394850">Test Driven by Lasse Koskela</a>.  He said it was not a bad book but he wasn&#8217;t convinced by the part which talked about driving development through acceptance tests.  The section on test driving the database was fine for simple applications, but in David&#8217;s experience it is not always simple to swap the database used in live with an in-memory database such as <a href="http://hsqldb.org/">HSQL</a>.  Often the application will use stored procedures or other specific features of the target database.  Inigo pointed out that if you have a requirement to support both Oracle and SQL Server, say, then using a third database would actually not be such a big step.</p>
<p>Inigo referred to <a href="http://research.microsoft.com/en-us/projects/esm/nagappan_tdd.pdf">a study by Microsoft</a> which showed that TDD took 15-35% longer than traditional development but was 40-90% better in terms of bug counts.<br />
<a href="http://www.flickr.com/photos/kikisdad/121065879/"><img alt="" src="http://farm1.static.flickr.com/19/121065879_ef9f8c2437_m_d.jpg" title="Bronze (Rail) Koru by Ctd 2005 on Flickr" class="alignleft" width="174" height="240" /></a> He suggested that it is the fact that the tests are written at the same time as the code that is important, not the fact that tests come first.  David suggested that you lose some advantages if you don&#8217;t follow the rules.  Writing the tests first mean you always know where you are and that every feature should have a test.  Tom said that be coded test-first when bug fixing, but found that doing true TDD was a bit tedious if followed to the letter. I mentioned <a href="http://sean-carley.blogspot.com/2006/04/ping-pong-pair-programming.html">Ping Pong programming</a>, where a pair of developers play a game by adding a failing test and getting their partner to make it pass and add their own failing test.  The idea is to try to write as little code as possible.  There was some surprise that this was not mentioned in the books we had read.</p>
<p>We talked about <a href="http://www.amazon.co.uk/Test-Driven-Development-Addison-Wesley-Signature/dp/0321146530/">the Kent Beck book</a>.  Inigo found it to be a little lightweight and quite philosophical while Miquel thought it was easy to read.  Inigo thought it had extra sections that were not strictly needed in a book about TDD, for example the chapters on refactoring and patterns. However, he liked the design of the code that is explored in the book, which is a currency conversion application.  Inigo had expected some interesting details of JUnit 4, but once he saw the copyright date he realised that this was not possible.</p>
<p>I found <a href="http://www.amazon.co.uk/Test-Driven-Development-Practical-Guide/dp/0131016490/">the Dave Astels book</a> felt quite outdated.  It is quite a few years old now, so many of the technologies such as JUnit and mocking have moved on quite significantly.  It could also do with some typesetting love as it is not the most beautiful book to look at.  I also felt that it was rather long &#8211; I couldn&#8217;t bring myself to read through the extended example which makes up most of the book.  Julian (as a newcomer to the subject) did feel that it was good that it was so practical, unlike Kent Beck&#8217;s more theoretical approach.  So perhaps it is the better of the two for someone new to this area.</p>
<p>We moved on to talking about different testing techniques.  I mentioned <a href="http://jumble.sourceforge.net/">Jumble</a>, a mutation testing framework which I have <a href="http://blog.nominet.org.uk/tech/2009/09/28/mutation-testing-with-jumble/">described on my work blog</a>.  David talked about how he used <a href="http://en.wikipedia.org/wiki/Fuzz_testing">Fuzzing</a> in his previous job to find bugs in an XML parser.  His experience was that it was best to have a smart fuzzer that understood XML as this was more likely to find bugs than just adding random noise to a file.</p>
<p>Inigo mentioned <a href="http://code.google.com/p/hamcrest/">Hamcrest</a> matchers and the use of <a href="http://www.infoq.com/news/2007/07/new_junit_release">assertThat in JUnit</a>.  It was generally agreed to be good for readability of code and error messages, but not so good with respect to IDE auto completion.  David pointed out that JUnit 4 has this problem over JUnit 3 since the assertion methods need to be statically imported.  </p>
<p>Finally Miquel asked about how to test JavaScript.  Tom and David described <a href="http://code.google.com/p/selenium/">Selenium/WebDriver</a> as the best tool in this area.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=191</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test Driven Development</title>
		<link>http://www.oxtremists.co.uk/?p=188</link>
		<comments>http://www.oxtremists.co.uk/?p=188#comments</comments>
		<pubDate>Thu, 17 Sep 2009 08:47:44 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=188</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=188</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meeting in October</title>
		<link>http://www.oxtremists.co.uk/?p=186</link>
		<comments>http://www.oxtremists.co.uk/?p=186#comments</comments>
		<pubDate>Thu, 17 Sep 2009 08:43:09 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[meetings]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=186</guid>
		<description><![CDATA[We will be meeting up on Thursday 29 October to discuss test driven development. We&#8217;ll be at the Lamb and Flag from 8pm. Our discussions will begin by talking about the books by Kent Beck and Dave Astels on the &#8230; <a href="http://www.oxtremists.co.uk/?p=186">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We will be meeting up on Thursday 29 October to discuss test driven development.  We&#8217;ll be at the <a href="http://maps.google.co.uk/maps?ie=UTF8&#038;q=lamb+and+flag+oxford&#038;hl=en&#038;ei=rwzSSP-sFIy-ogObyenHDA&#038;cd=1&#038;cid=51757688,-1259480,17108924800302305221&#038;li=lmd">Lamb and Flag</a> from 8pm. Our discussions will begin by talking about the books by <a href="http://www.amazon.co.uk/Test-Driven-Development-Addison-Wesley-Signature/dp/0321146530/">Kent Beck</a> and <a href="http://www.amazon.co.uk/Test-Driven-Development-Practical-Guide/dp/0131016490/">Dave Astels</a> on the subject.  But you don&#8217;t have to have read either to come and join in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=186</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another book&#8230;</title>
		<link>http://www.oxtremists.co.uk/?p=179</link>
		<comments>http://www.oxtremists.co.uk/?p=179#comments</comments>
		<pubDate>Thu, 27 Aug 2009 13:26:44 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[announcements]]></category>
		<category><![CDATA[discussions]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=179</guid>
		<description><![CDATA[I&#8217;d like to cover another book, probably for discussion in October. Add comments with 3 suggestions and we&#8217;ll look at the winning one. [UPDATE We have chosen both the suggested books on Test Driven Development ]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;d like to cover another book, probably for discussion in October. Add comments with 3 suggestions and we&#8217;ll look at the winning one. <strong>[UPDATE</strong> We have chosen <em>both</em> the suggested books on Test Driven Development <strong>]</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=179</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How does testing fit in?</title>
		<link>http://www.oxtremists.co.uk/?p=172</link>
		<comments>http://www.oxtremists.co.uk/?p=172#comments</comments>
		<pubDate>Thu, 27 Aug 2009 13:12:55 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[teams]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=172</guid>
		<description><![CDATA[Unfortunately it was just Miquel and me at this meeting to discuss testing and how testers fit into an agile project. The discussions were based around Agile Testing by Lisa Crispin and Janet Gregory. I&#8217;d managed to read about half &#8230; <a href="http://www.oxtremists.co.uk/?p=172">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Unfortunately it was just Miquel and me at this meeting to discuss testing and how testers fit into an agile project.  The discussions were based around <a href="http://www.amazon.co.uk/Agile-Testing-Practical-Addison-Wesley-Signature/dp/0321534468/">Agile Testing by Lisa Crispin and Janet Gregory</a>.  I&#8217;d managed to read about half of it, while Miquel had managed a little less.  </p>
<p>Miquel started off by saying that he found the book quite hard to read a possibly and little repetitive. I agreed that it seemed to be longer than it needed to be.  Miquel did like the mind maps that appeared at the start of each chapter though.</p>
<p><a href="http://www.flickr.com/photos/rolhas/2190350235/"><img alt="ponte vasco da gama by rolhas" src="http://farm3.static.flickr.com/2378/2190350235_53a4d2751f_m.jpg" title="ponte vasco da gama by rolhas" class="alignleft" width="240" height="160" /></a>We talked about the idea of having the tester be a bridge between the customer and the developers. I liked this alternative approach to the traditional idea of having testers simply being the last line in the chain before software goes into production.</p>
<p>For me, the most important part of the book was the idea of the testing quadrants.  They act as a checklist which make it easy to consider what kinds of testing you are or are not doing and if you are doing enough.  There are 4 quadrants, along 2 axes.  Tests are either business or technology-facing and either support the team or critique the product. There is <a href="http://onestepbacktwostepsforward.blogspot.com/2009/06/agile-testing-quadrants.html">a diagram in this blog posting</a> which describes it a little more.</p>
<p>Other things which I found interesting were &#8220;Wizard of Oz&#8221; testing (p138), Ripple Effects (p143) and Exploratory Testing (p197).</p>
<p><a href="http://www.usabilityfirst.com/glossary/term_105.txl">Wizard of Oz usability testing</a> is a prototyping technique where a paper mock up is animated by testers simply using pieces of paper.  So it is like traditional prototyping but with the addition of a limited amount of interactivity rather than just a static picture.</p>
<p>The idea of &#8220;Ripple Effects&#8221; is to try to avoid unexpected knock-on effects of changes made to a system. The idea is to explicitly run through a checklist of existing areas of functionality and consider any impacts.  This very simple thing is done to avoid the shortsightedness that can sometimes arise when an agile project focusses on each story as it comes up without considering the larger picture.</p>
<p>Finally, I liked the comparison between Exploratory Testing and the Agile Manifesto as explained by <a href="http://www.developsense.com/blog.html">Michael Bolton</a>.  Since I didn&#8217;t know too much about Exploratory Testing before reading this, it was intriguing to see the parallels.  There is an <a href="http://www.stickyminds.com/sitewide.asp?ObjectId=2255&#038;Function=edetail&#038;ObjectType=COL">article by James Bach at Stickyminds</a> that explains the concepts quite well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>July&#8217;s Meeting</title>
		<link>http://www.oxtremists.co.uk/?p=168</link>
		<comments>http://www.oxtremists.co.uk/?p=168#comments</comments>
		<pubDate>Thu, 02 Jul 2009 11:25:39 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=168</guid>
		<description><![CDATA[So, the date is fixed, we&#8217;ll be meeting on Thursday 30 July at the Lamb and Flag from 8pm to talk about testing and how testers fit into an agile project. The starting point for discussions will be Agile Testing &#8230; <a href="http://www.oxtremists.co.uk/?p=168">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So, the date is fixed, we&#8217;ll be meeting on Thursday 30 July at <a href="http://maps.google.co.uk/maps?ie=UTF8&#038;q=lamb+and+flag+oxford&#038;hl=en&#038;ei=rwzSSP-sFIy-ogObyenHDA&#038;cd=1&#038;cid=51757688,-1259480,17108924800302305221&#038;li=lmd">the Lamb and Flag</a> from 8pm to talk about testing and how testers fit into an agile project.  The starting point for discussions will be <a href="http://www.amazon.co.uk/Agile-Testing-Practical-Addison-Wesley-Signature/dp/0321534468/">Agile Testing by Lisa Crispin and Janet Gregory</a>. As usual, it is not necessary to read the book, although a passing knowledge of the subject might help!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=168</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sleeping</title>
		<link>http://www.oxtremists.co.uk/?p=165</link>
		<comments>http://www.oxtremists.co.uk/?p=165#comments</comments>
		<pubDate>Fri, 19 Jun 2009 13:55:20 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=165</guid>
		<description><![CDATA[You may have noticed that the group has been rather quiet for the last few months. I was hoping that someone else would volunteer to run it. But no-one did. So I sulked. But now I have a book sitting &#8230; <a href="http://www.oxtremists.co.uk/?p=165">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>You may have noticed that the group has been rather quiet for the last few months.  I was hoping that someone else would volunteer to run it.  But no-one did.  So I sulked. </p>
<p>But now I have a book sitting on my desk that I&#8217;d like to read, but I need a push to get started.  So maybe we could wake the group from its sleep to cover this? It is <a href="http://www.amazon.co.uk/Agile-Testing-Practical-Addison-Wesley-Signature/dp/0321534468/">Agile Testing by Lisa Crispin and Janet Gregory</a>. <del datetime="2009-06-22T13:05:03+00:00">Ideally I&#8217;d like to discuss this in the first week of August.  Anyone else interested?</del> UPDATE: Let&#8217;s pencil in Thursday 30 July!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=165</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Topic for March</title>
		<link>http://www.oxtremists.co.uk/?p=158</link>
		<comments>http://www.oxtremists.co.uk/?p=158#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:39:19 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[discussions]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=158</guid>
		<description><![CDATA[We are due to meet on 10th March. Our discussions will be based around a book that we have covered previously. The list of our books is on LibraryThing, but remember we have already done some books twice. To vote, &#8230; <a href="http://www.oxtremists.co.uk/?p=158">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We are due to meet on 10th March. Our discussions will be based around a book that we have covered previously.  The list of our books is on <a href="http://www.librarything.com/catalog.php?view=oxtremists">LibraryThing</a>, but remember we have already done some books twice.  To vote, add a comment listing your three preferences in order.</p>
<p><strong>[UPDATE: </strong>It looks like <a href="http://www.amazon.co.uk/Agile-Estimating-Planning-Robert-Martin/dp/0131479415">Agile Estimating and Planning</a> is the winner in this contest, although Miquel made the election more complicated by not listing his preferences in order.<strong>]</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=158</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Communicating through code</title>
		<link>http://www.oxtremists.co.uk/?p=152</link>
		<comments>http://www.oxtremists.co.uk/?p=152#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:34:48 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.oxtremists.co.uk/?p=152</guid>
		<description><![CDATA[For this meeting, I was joined by Tom, Miquel and Inigo, with the discussion based around Kent Beck&#8217;s Implementation Patterns. Miquel began by saying that much of it was common sense. Tom agreed, but said that it was one of &#8230; <a href="http://www.oxtremists.co.uk/?p=152">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>For this meeting, I was joined by Tom, Miquel and Inigo, with the discussion based around <a href="http://www.amazon.co.uk/Implementation-Patterns-Addison-Wesley-Signature-Kent/dp/0321413091">Kent Beck&#8217;s Implementation Patterns</a>.  </p>
<p>Miquel began by saying that much of it was common sense.  Tom agreed, but said that it was one of those books people say should be given to novice programmers.  But then those beginners would probably miss out on the subtleties, so the actually time when it would be useful would be rather limited.  Inigo thought much of it was too obvious, except for the handful of things he disagreed with, such as the variable state pattern and his views on final variables.  On the other hand, he thought that there could have been more discussion about immutable objects and functional-style programming.  It was generally agreed that they weren&#8217;t really &#8216;patterns&#8217; as such &#8211; Inigo thought they were mostly &#8216;idioms&#8217;.</p>
<p><a href="http://www.flickr.com/photos/paulwatson/5184351/"><img alt="" src="http://farm1.static.flickr.com/4/5184351_3f066991ae_m_d.jpg" title="Do note, conclusion by Paul Watson" class="alignnone" width="240" height="160" /></a></p>
<p>On the plus side, Inigo like the idea of the book and wanted to like it more.  I agreed and liked the back-to-basics approach of saying &#8220;hold on why do we even split logic into methods?&#8221;.  I also liked the slightly different way of thinking about the reader of your code.  Kent Beck asks what the user will read &#8216;between the lines&#8217; because of the implementation approach you have taken.  Inigo liked the way he admitted his ignorance about such topics as concurrency and referred the reader to other books.</p>
<p>It was generally agreed that the book&#8217;s Java focus might be a surprise to someone picking the book up cold.  I found the performance measurement section to be out-of-place.  Inigo thought it would have been much more useful to have explicitly given details of hardware, operating system, JVM version etc.  Miquel pointed out that speed is one thing, but maybe the memory footprint could be important for large collections too, but that is not mentioned.</p>
<p>I wasn&#8217;t sure that the use of the word &#8216;Symmetry&#8217; was correct (see p15).  To me, something can have parts of differing sizes but still be symmetric.  I think the word &#8216;Uniformity&#8217; would be better and in fact that very word is used by the author on p101 in relation to JUnit.  Tom said that this concept was one of the few things he had taken from the book and he&#8217;d hoped for more.  It seemed to him that some of the patterns were just dictionary definitions of the term, such as the &#8216;patterns&#8217; around exceptions.</p>
<p>I think I was the only person to read the part about frameworks.  I thought this was quite interesting though, as it discussed the differences between this sort of code and application code.  In a nutshell, sometimes you might make a framework uglier on the inside to keep it clean on the outside and to limit difficulties when you make changes in the future.  Kent Beck seems well qualified to talk on this, having been involved in the move from JUnit 3 to 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oxtremists.co.uk/?feed=rss2&#038;p=152</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
