<?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>Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky &#187; junit</title>
	<atom:link href="http://www.selikoff.net/tag/junit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.selikoff.net</link>
	<description>Java/J2EE Software Development and Technology Discussion Blog</description>
	<lastBuildDate>Mon, 30 Jan 2012 02:27:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Testing java ee applications &#8211; the server side java symposium</title>
		<link>http://www.selikoff.net/2011/03/17/testing-java-ee-applications-the-server-side-java-symposium/</link>
		<comments>http://www.selikoff.net/2011/03/17/testing-java-ee-applications-the-server-side-java-symposium/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 23:49:20 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[JEE]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[tssjs]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=2952</guid>
		<description><![CDATA[This session was also fast moving and information filled, but it didn&#8217;t feel as overwhelming as the Spring session. The presenter included demos of some of the technologies.  He did use the term &#8220;unit test&#8221; for things that test through the web and database. I would rather these be called integration/functional tests. I wish the [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2011/03/17/testing-java-ee-applications-the-server-side-java-symposium/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Test smells breakout at the server side java symposium</title>
		<link>http://www.selikoff.net/2011/03/16/test-smells-breakout-at-the-server-side-java-symposium/</link>
		<comments>http://www.selikoff.net/2011/03/16/test-smells-breakout-at-the-server-side-java-symposium/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 18:18:14 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[tssjs]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=2880</guid>
		<description><![CDATA[While I&#8217;ve read about this topic a lot, I wanted to come to do the topic to see how Lasse Koskela presents. [I've learned so much from him over the years as a moderator at coderanch ] He speaks in the same voice that he writes &#8211; casual and easy to follow. I really liked [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2011/03/16/test-smells-breakout-at-the-server-side-java-symposium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>junit suite wide setup (not @BeforeClass)</title>
		<link>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/</link>
		<comments>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 01:39:08 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[JavaRanch]]></category>
		<category><![CDATA[integration_test]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[junit4]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1912</guid>
		<description><![CDATA[Problem How do I run setup/teardown for my whole suite, not just one class/test? Impact of Problem JUnit offers @Before to run a method before each test and @BeforeClass to run a method once before a class.  For a small suite, @BeforeClass may be enough.  For a large integration test suite, setting up the database [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Refactoring JUnit 3.8 to 4.0 when hierarchy extends TestCase</title>
		<link>http://www.selikoff.net/2010/02/02/refactoring-junit-3-8-to-4-0-when-hierarchy-extends-testcase/</link>
		<comments>http://www.selikoff.net/2010/02/02/refactoring-junit-3-8-to-4-0-when-hierarchy-extends-testcase/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 04:01:19 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1500</guid>
		<description><![CDATA[Problem: I want to start writing tests in JUnit 4.0, but I have a lot of tests in JUnit 3.8.  I can&#8217;t just start writing tests in 4.0, because I rely on common setup/assertions in my custom superclass which extends TestCase. (Which means JUnit will only look for 3.8 style tests) Solution: Create one or [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/02/02/refactoring-junit-3-8-to-4-0-when-hierarchy-extends-testcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>product review: infinitest</title>
		<link>http://www.selikoff.net/2009/10/24/product-review-infinitest/</link>
		<comments>http://www.selikoff.net/2009/10/24/product-review-infinitest/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 00:06:47 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Development Process]]></category>
		<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1319</guid>
		<description><![CDATA[Want to run your JUnit tests as soon as you change the code?  That&#8217;s what infinitest strives to do.  The starting point is infinitetest.org which directs you to the corporate site. What does it do? Infinitest installs as a plugin to your IDE.  In Eclipse, it adds a bar to the bottom of your screen.  [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2009/10/24/product-review-infinitest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

