<?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: Ajax Functional Testing Fun</title>
	<atom:link href="http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/</link>
	<description>let the chips fall where they may</description>
	<lastBuildDate>Fri, 27 Feb 2009 15:19:27 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matt Brandt</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-47389</link>
		<dc:creator>Matt Brandt</dc:creator>
		<pubDate>Wed, 04 Jun 2008 14:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-47389</guid>
		<description>Oops, I found a typo in my previous comment.  The error message states that no tests are found in the TestClassComposite Class, not the TestOneClass.

Cheers,

Matt</description>
		<content:encoded><![CDATA[<p>Oops, I found a typo in my previous comment.  The error message states that no tests are found in the TestClassComposite Class, not the TestOneClass.</p>
<p>Cheers,</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Brandt</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-47360</link>
		<dc:creator>Matt Brandt</dc:creator>
		<pubDate>Tue, 03 Jun 2008 21:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-47360</guid>
		<description>Hi Dave,
If you have time, I have another question for you that maybe your experience can shed light onto. I want to create a JUnit Test Suite to test all my SeleneseTestCase classes. In JUnit i would do the following.

public class TestClassComposite extends TestCase {

	public TestClassComposite(String method) {
		super(method);
	}

	static public Test suite() {
		TestSuite suite = new TestSuite();
		// Run all tests in the Class
		suite.addTestSuite(TestClassOne.class);
		return suite;
	}
}

However when I do this I receive an error that no tests where found in the TestClassOne.  I looked through the API for Selenium RC and was unable to find a similar method for accomplishing the task.  
Is there a JUnit-ish way to build a test suite or am I making a fundamental error in something that I&#039;m doing or assuming.

Cheers,

Matt</description>
		<content:encoded><![CDATA[<p>Hi Dave,<br />
If you have time, I have another question for you that maybe your experience can shed light onto. I want to create a JUnit Test Suite to test all my SeleneseTestCase classes. In JUnit i would do the following.</p>
<p>public class TestClassComposite extends TestCase {</p>
<p>	public TestClassComposite(String method) {<br />
		super(method);<br />
	}</p>
<p>	static public Test suite() {<br />
		TestSuite suite = new TestSuite();<br />
		// Run all tests in the Class<br />
		suite.addTestSuite(TestClassOne.class);<br />
		return suite;<br />
	}<br />
}</p>
<p>However when I do this I receive an error that no tests where found in the TestClassOne.  I looked through the API for Selenium RC and was unable to find a similar method for accomplishing the task.<br />
Is there a JUnit-ish way to build a test suite or am I making a fundamental error in something that I&#8217;m doing or assuming.</p>
<p>Cheers,</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Brandt</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-46576</link>
		<dc:creator>Matt Brandt</dc:creator>
		<pubDate>Tue, 20 May 2008 21:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-46576</guid>
		<description>Dave,
Thanks for the quick response and the offer to bring questions here. I&#039;m finding it to be the same on my end as far needing to play with the tool set to really explore it.  With luck version 1.0 will move out of beta shortly and some solid documentation will begin to follow. It&#039;s a great tool.

Cheers,

Matt</description>
		<content:encoded><![CDATA[<p>Dave,<br />
Thanks for the quick response and the offer to bring questions here. I&#8217;m finding it to be the same on my end as far needing to play with the tool set to really explore it.  With luck version 1.0 will move out of beta shortly and some solid documentation will begin to follow. It&#8217;s a great tool.</p>
<p>Cheers,</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Johnson</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-46564</link>
		<dc:creator>Dave Johnson</dc:creator>
		<pubDate>Tue, 20 May 2008 19:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-46564</guid>
		<description>I wish that I could help more but we didn&#039;t really find that many good resources. It was a lot of messing around with it on our end.

If you have any specific questions feel free to post them here.

Good luck with it!</description>
		<content:encoded><![CDATA[<p>I wish that I could help more but we didn&#8217;t really find that many good resources. It was a lot of messing around with it on our end.</p>
<p>If you have any specific questions feel free to post them here.</p>
<p>Good luck with it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Brandt</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-46563</link>
		<dc:creator>Matt Brandt</dc:creator>
		<pubDate>Tue, 20 May 2008 19:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-46563</guid>
		<description>This may sound like a silly question (I&#039;m just beginning to play with Selenium as part of a summer internship), can you recommend good reference sources or publications that go beyond the basic how to&#039;s?  Are there other communities that outside of OpenQA that have lively and insightful conversations?

Thank you in advance.</description>
		<content:encoded><![CDATA[<p>This may sound like a silly question (I&#8217;m just beginning to play with Selenium as part of a summer internship), can you recommend good reference sources or publications that go beyond the basic how to&#8217;s?  Are there other communities that outside of OpenQA that have lively and insightful conversations?</p>
<p>Thank you in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Johnson</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-45678</link>
		<dc:creator>Dave Johnson</dc:creator>
		<pubDate>Wed, 07 May 2008 00:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-45678</guid>
		<description>it actually works amazingly well!</description>
		<content:encoded><![CDATA[<p>it actually works amazingly well!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sargon Benjamin</title>
		<link>http://blogs.nitobi.com/dave/2008/03/12/ajax-functional-testing-fun/comment-page-1/#comment-45515</link>
		<dc:creator>Sargon Benjamin</dc:creator>
		<pubDate>Mon, 05 May 2008 06:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.nitobi.com/dave/?p=313#comment-45515</guid>
		<description>Sweet! I didn&#039;t even know this was a possibility.  I&#039;m guessing there are gotta be some quirks to test execution using Eclipse and JUnit.  Nonetheless, awesome tidbit here. Thank you</description>
		<content:encoded><![CDATA[<p>Sweet! I didn&#8217;t even know this was a possibility.  I&#8217;m guessing there are gotta be some quirks to test execution using Eclipse and JUnit.  Nonetheless, awesome tidbit here. Thank you</p>
]]></content:encoded>
	</item>
</channel>
</rss>

