<?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: Scala Confusion</title>
	<atom:link href="http://xprogramming.com/articles/scala-confusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://xprogramming.com/articles/scala-confusion/</link>
	<description>an agile software development resource</description>
	<lastBuildDate>Tue, 11 Oct 2011 17:33:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Ron Jeffries</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1405</link>
		<dc:creator>Ron Jeffries</dc:creator>
		<pubDate>Sun, 08 Aug 2010 12:29:19 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1405</guid>
		<description>Closing comments on some of these older articles. Later ones still timely and open ...</description>
		<content:encoded><![CDATA[<p>Closing comments on some of these older articles. Later ones still timely and open &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krzysztof Jelski</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1337</link>
		<dc:creator>Krzysztof Jelski</dc:creator>
		<pubDate>Tue, 03 Aug 2010 07:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1337</guid>
		<description>I use ClasspathSuite:

http://johanneslink.net/projects/cpsuite.jsp</description>
		<content:encoded><![CDATA[<p>I use ClasspathSuite:</p>
<p><a href="http://johanneslink.net/projects/cpsuite.jsp" rel="nofollow">http://johanneslink.net/projects/cpsuite.jsp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Taylor</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1325</link>
		<dc:creator>Tim Taylor</dc:creator>
		<pubDate>Wed, 28 Jul 2010 17:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1325</guid>
		<description>The IDE support for run-all-tests is nice, but I&#039;d still like to know how to do a Suite properly, in my case for automated/CI builds.</description>
		<content:encoded><![CDATA[<p>The IDE support for run-all-tests is nice, but I&#8217;d still like to know how to do a Suite properly, in my case for automated/CI builds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Whitehouse</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1324</link>
		<dc:creator>Jamie Whitehouse</dc:creator>
		<pubDate>Wed, 28 Jul 2010 15:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1324</guid>
		<description>Creating a suite using JUnit for worked for me:

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)
@SuiteClasses({SystemSpeakerTest.class, StringSplitSpeedTest.class})
public class AllTests {

}

See the JavaDoc at http://kentbeck.github.com/junit/javadoc/latest/org/junit/runners/Suite.html

Note: if using the Eclipse run package and this suite is in the same package with the tests then they&#039;ll get run twice, once for the suite and once for the individual test class.</description>
		<content:encoded><![CDATA[<p>Creating a suite using JUnit for worked for me:</p>
<p>import org.junit.runner.RunWith;<br />
import org.junit.runners.Suite;<br />
import org.junit.runners.Suite.SuiteClasses;</p>
<p>@RunWith(Suite.class)<br />
@SuiteClasses({SystemSpeakerTest.class, StringSplitSpeedTest.class})<br />
public class AllTests {</p>
<p>}</p>
<p>See the JavaDoc at <a href="http://kentbeck.github.com/junit/javadoc/latest/org/junit/runners/Suite.html" rel="nofollow">http://kentbeck.github.com/junit/javadoc/latest/org/junit/runners/Suite.html</a></p>
<p>Note: if using the Eclipse run package and this suite is in the same package with the tests then they&#8217;ll get run twice, once for the suite and once for the individual test class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Jeffries</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1323</link>
		<dc:creator>Ron Jeffries</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1323</guid>
		<description>Duh. That works just fine. I think I&#039;ll stop worrying about making the Suite right. Still curious how to do it the other way tho ...

Thanks!</description>
		<content:encoded><![CDATA[<p>Duh. That works just fine. I think I&#8217;ll stop worrying about making the Suite right. Still curious how to do it the other way tho &#8230;</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Whitehouse</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1322</link>
		<dc:creator>Jamie Whitehouse</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1322</guid>
		<description>Instead of creating a suite you can use Eclipse to run all tests in a package.  Select the package, run as, junit test (shift-alt-x t).  After that ctrl-f11 will re-run it.

Or get Kent Becks JUnit Max that will automatically run your tests when files are saved.</description>
		<content:encoded><![CDATA[<p>Instead of creating a suite you can use Eclipse to run all tests in a package.  Select the package, run as, junit test (shift-alt-x t).  After that ctrl-f11 will re-run it.</p>
<p>Or get Kent Becks JUnit Max that will automatically run your tests when files are saved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Jeffries</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1321</link>
		<dc:creator>Ron Jeffries</dc:creator>
		<pubDate>Wed, 28 Jul 2010 13:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1321</guid>
		<description>Yes ... I could plug in ScalaTest and quite possibly I should. Does it have Suites? If, as it looks, the issue is with JUnit, am I likely to have the same issues?

I don&#039;t usually recommend solving a problem by adding more unknowns to the mix ... that&#039;s my concern here.

Thanks ... it may come down to switching horses. Or metaphors.</description>
		<content:encoded><![CDATA[<p>Yes &#8230; I could plug in ScalaTest and quite possibly I should. Does it have Suites? If, as it looks, the issue is with JUnit, am I likely to have the same issues?</p>
<p>I don&#8217;t usually recommend solving a problem by adding more unknowns to the mix &#8230; that&#8217;s my concern here.</p>
<p>Thanks &#8230; it may come down to switching horses. Or metaphors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Creswell</title>
		<link>http://xprogramming.com/articles/scala-confusion/#comment-1319</link>
		<dc:creator>Dan Creswell</dc:creator>
		<pubDate>Wed, 28 Jul 2010 08:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://xprogramming.com/?p=1790#comment-1319</guid>
		<description>Probably not what you want to hear but I&#039;ve found it easiest to use ScalaTest and it&#039;s associated JUnit friendly traits:

http://www.scalatest.org/getting_started_with_junit

This way I can write most stuff using all my favourite JUnit annotations etc but benefit from the slightly better assert syntax etc.</description>
		<content:encoded><![CDATA[<p>Probably not what you want to hear but I&#8217;ve found it easiest to use ScalaTest and it&#8217;s associated JUnit friendly traits:</p>
<p><a href="http://www.scalatest.org/getting_started_with_junit" rel="nofollow">http://www.scalatest.org/getting_started_with_junit</a></p>
<p>This way I can write most stuff using all my favourite JUnit annotations etc but benefit from the slightly better assert syntax etc.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

