<?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: Javascript Test Driven Development With YUI Test</title>
	<atom:link href="http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/</link>
	<description>Rants and Musings of an Agile Developer</description>
	<lastBuildDate>Thu, 26 Jan 2012 11:54:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Simon Tiffert</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107990</link>
		<dc:creator>Simon Tiffert</dc:creator>
		<pubDate>Mon, 22 Jun 2009 07:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107990</guid>
		<description>Because we use Selenium for our functional tests, we already had a setup for starting and controlling different browsers. 
We added YUI tests with the YUI Testmanager and are tracking the results on the last page. In this way we have a setup to get the results back of IE, Firefox, Opera to our CI server.

Maybe interesting: 
http://www.agimatec.de/blog/2009/01/javascript-unit-tests-with-the-yui-testmanager/</description>
		<content:encoded><![CDATA[<p>Because we use Selenium for our functional tests, we already had a setup for starting and controlling different browsers.<br />
We added YUI tests with the YUI Testmanager and are tracking the results on the last page. In this way we have a setup to get the results back of IE, Firefox, Opera to our CI server.</p>
<p>Maybe interesting:<br />
<a href="http://www.agimatec.de/blog/2009/01/javascript-unit-tests-with-the-yui-testmanager/" rel="nofollow">http://www.agimatec.de/blog/2009/01/javascript-unit-tests-with-the-yui-testmanager/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Carr</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107860</link>
		<dc:creator>James Carr</dc:creator>
		<pubDate>Sat, 20 Jun 2009 14:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107860</guid>
		<description>Actually the ability to plug different testing frameworks into js-test-driver is one of the goals of the project. I am currently working with the source to get an architecture in place that allows the ability to write an adapter for different frameworks to plug them in. 

The first two frameworks on my list to try and get working with it is jspec and YUI Test. :)</description>
		<content:encoded><![CDATA[<p>Actually the ability to plug different testing frameworks into js-test-driver is one of the goals of the project. I am currently working with the source to get an architecture in place that allows the ability to write an adapter for different frameworks to plug them in. </p>
<p>The first two frameworks on my list to try and get working with it is jspec and YUI Test. <img src='http://blog.james-carr.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas C. Zakas</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107827</link>
		<dc:creator>Nicholas C. Zakas</dc:creator>
		<pubDate>Sat, 20 Jun 2009 01:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107827</guid>
		<description>Kumar - I think of JS Test Driver as a front end for the JavaScript unit testing frameworks. You still ultimately need code to be executed in the browser - JS Test Driver allows you to kick it off from a command line and other there are other tools that can do similar. I don&#039;t think we&#039;re necessarily comparing apples-to-apples on this one.</description>
		<content:encoded><![CDATA[<p>Kumar &#8211; I think of JS Test Driver as a front end for the JavaScript unit testing frameworks. You still ultimately need code to be executed in the browser &#8211; JS Test Driver allows you to kick it off from a command line and other there are other tools that can do similar. I don&#8217;t think we&#8217;re necessarily comparing apples-to-apples on this one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumar McMillan</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107795</link>
		<dc:creator>Kumar McMillan</dc:creator>
		<pubDate>Fri, 19 Jun 2009 19:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107795</guid>
		<description>In all of these JavaScript unit testing frameworks I see (JsUnit, QUnit, etc) they all seem to depend too much on the web browser itself.  This makes automation hard, it makes running tests on multiple browsers cumbersome, and it makes CI difficult.  JsTestDriver - http://code.google.com/p/js-test-driver/ - takes a fresh approach whereby it treats each browser as a runtime environment that can live on any machine.  You run tests from the command line; the script talks to a central server and runs tests simultaneously on all connected web browsers, reporting the result as text or xunit XML.  I&#039;ve been using it a fair bit and I wrote up a short article about it here: http://farmdev.com/thoughts/79/unit-testing-javascript-with-jstestdriver/</description>
		<content:encoded><![CDATA[<p>In all of these JavaScript unit testing frameworks I see (JsUnit, QUnit, etc) they all seem to depend too much on the web browser itself.  This makes automation hard, it makes running tests on multiple browsers cumbersome, and it makes CI difficult.  JsTestDriver &#8211; <a href="http://code.google.com/p/js-test-driver/" rel="nofollow">http://code.google.com/p/js-test-driver/</a> &#8211; takes a fresh approach whereby it treats each browser as a runtime environment that can live on any machine.  You run tests from the command line; the script talks to a central server and runs tests simultaneously on all connected web browsers, reporting the result as text or xunit XML.  I&#8217;ve been using it a fair bit and I wrote up a short article about it here: <a href="http://farmdev.com/thoughts/79/unit-testing-javascript-with-jstestdriver/" rel="nofollow">http://farmdev.com/thoughts/79/unit-testing-javascript-with-jstestdriver/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Carr</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107748</link>
		<dc:creator>James Carr</dc:creator>
		<pubDate>Fri, 19 Jun 2009 04:26:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107748</guid>
		<description>Thanks for the reply Nicholas! The next part of this series (following the different TDD frameworks) is to cover different mocking frameworks/strategies in javascript, so I&#039;ll definitely have to follow up with the mocking framework in the YUI3 version.</description>
		<content:encoded><![CDATA[<p>Thanks for the reply Nicholas! The next part of this series (following the different TDD frameworks) is to cover different mocking frameworks/strategies in javascript, so I&#8217;ll definitely have to follow up with the mocking framework in the YUI3 version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas C. Zakas</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107737</link>
		<dc:creator>Nicholas C. Zakas</dc:creator>
		<pubDate>Fri, 19 Jun 2009 02:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107737</guid>
		<description>I&#039;m glad you enjoyed YUI Test. I can answer the question of it being actively developed because I&#039;m actively developing it. :) There will continue to be development as long as I continue to receive feedback, and YUI Test has already been ported to YUI 3 (the YUI 3 version also includes a mocking utility). If you ever have feedback or suggestions, please feel free to contact me directly or start a conversation on ydn-javascript.</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad you enjoyed YUI Test. I can answer the question of it being actively developed because I&#8217;m actively developing it. <img src='http://blog.james-carr.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  There will continue to be development as long as I continue to receive feedback, and YUI Test has already been ported to YUI 3 (the YUI 3 version also includes a mocking utility). If you ever have feedback or suggestions, please feel free to contact me directly or start a conversation on ydn-javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Carr</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107735</link>
		<dc:creator>James Carr</dc:creator>
		<pubDate>Fri, 19 Jun 2009 02:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107735</guid>
		<description>Hmmm... I actually think this would be a very good idea... CI in the cloud. :)</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; I actually think this would be a very good idea&#8230; CI in the cloud. <img src='http://blog.james-carr.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TJ Holowaychuk</title>
		<link>http://blog.james-carr.org/2009/06/18/javascript-test-driven-development-with-yui-test/#comment-107726</link>
		<dc:creator>TJ Holowaychuk</dc:creator>
		<pubDate>Fri, 19 Jun 2009 01:21:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.james-carr.org/?p=421#comment-107726</guid>
		<description>Another great writeup. Interesting to have nice summaries of everything out there, gives me some inspiration for JSpec :) I like posting to a URI feature, would be hella simple with JSpec&#039;s abstracted reporting I will have to try that out.

I was also thinking about a hosted CI service / loads of browsers for testing so people dont need to go setting up or installing browsers on their server/laptop</description>
		<content:encoded><![CDATA[<p>Another great writeup. Interesting to have nice summaries of everything out there, gives me some inspiration for JSpec <img src='http://blog.james-carr.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I like posting to a URI feature, would be hella simple with JSpec&#8217;s abstracted reporting I will have to try that out.</p>
<p>I was also thinking about a hosted CI service / loads of browsers for testing so people dont need to go setting up or installing browsers on their server/laptop</p>
]]></content:encoded>
	</item>
</channel>
</rss>

