<?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: Custom test runner for FlexUnit 4 and mock-as3</title>
	<atom:link href="http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/</link>
	<description>eat, program, and be merry</description>
	<lastBuildDate>Wed, 21 Jul 2010 22:35:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Brian LeGros</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-20525</link>
		<dc:creator>Brian LeGros</dc:creator>
		<pubDate>Wed, 30 Dec 2009 19:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-20525</guid>
		<description>@Joel - Right on, I hadn&#039;t taken the time to update this post. Thanks for the heads up.  I&#039;ll have to update the runner one more time to work with FlexUnit RC1 since test runner implementations have changed.  I&#039;ll get those pushed to the SCM for the project as well.</description>
		<content:encoded><![CDATA[<p>@Joel &#8211; Right on, I hadn&#8217;t taken the time to update this post. Thanks for the heads up.  I&#8217;ll have to update the runner one more time to work with FlexUnit RC1 since test runner implementations have changed.  I&#8217;ll get those pushed to the SCM for the project as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Hooks</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-20522</link>
		<dc:creator>Joel Hooks</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-20522</guid>
		<description>http://github.com/drewbourne/mock-as3/blob/master/core/src/com/anywebcam/mock/runner/MockRunner.as

Looks like this is in the current master branch of mock-as3.</description>
		<content:encoded><![CDATA[<p><a href="http://github.com/drewbourne/mock-as3/blob/master/core/src/com/anywebcam/mock/runner/MockRunner.as" rel="nofollow">http://github.com/drewbourne/mock-as3/blob/master/core/src/com/anywebcam/mock/runner/MockRunner.as</a></p>
<p>Looks like this is in the current master branch of mock-as3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian LeGros</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-15223</link>
		<dc:creator>Brian LeGros</dc:creator>
		<pubDate>Tue, 08 Sep 2009 04:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-15223</guid>
		<description>@tanakorn - Thanks for stopping by.  The BDD work was that of Drew Bourne, so I can&#039;t take credit.  Hope you enjoy working with FlexUnit4.</description>
		<content:encoded><![CDATA[<p>@tanakorn &#8211; Thanks for stopping by.  The BDD work was that of Drew Bourne, so I can&#8217;t take credit.  Hope you enjoy working with FlexUnit4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanakorn</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-15126</link>
		<dc:creator>tanakorn</dc:creator>
		<pubDate>Sat, 05 Sep 2009 07:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-15126</guid>
		<description>Oh! Finally Flex framework have BDD Framework like other :).

Thank for great webinar and your kindly contributed source code.</description>
		<content:encoded><![CDATA[<p>Oh! Finally Flex framework have BDD Framework like other <img src='http://www.brianlegros.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Thank for great webinar and your kindly contributed source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian LeGros</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-14110</link>
		<dc:creator>Brian LeGros</dc:creator>
		<pubDate>Sun, 09 Aug 2009 05:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-14110</guid>
		<description>I&#039;ve updated the runner to now have the ability to work with classes having constructors which take arguments.  Using [Mock(inject=&quot;false&quot;)], you can tell the runner you are responsible for injecting the mock.  Doing so will let you still take advantage of the runner preparing the mock and verifying it did what it was supposed to do.  Thanks to Kris over at mockito-flex for dialoging with me re: support for this edge case.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve updated the runner to now have the ability to work with classes having constructors which take arguments.  Using [Mock(inject="false")], you can tell the runner you are responsible for injecting the mock.  Doing so will let you still take advantage of the runner preparing the mock and verifying it did what it was supposed to do.  Thanks to Kris over at mockito-flex for dialoging with me re: support for this edge case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#160; mock-as3/FlexUnit4 test runner published from August presentation&#160;by&#160;Adobe Developers of Greater Orlando</title>
		<link>http://www.brianlegros.com/blog/2009/08/06/custom-test-runner-for-flexunit-4-and-mock-as3/comment-page-1/#comment-14050</link>
		<dc:creator>&#160; mock-as3/FlexUnit4 test runner published from August presentation&#160;by&#160;Adobe Developers of Greater Orlando</dc:creator>
		<pubDate>Fri, 07 Aug 2009 00:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.brianlegros.com/blog/?p=479#comment-14050</guid>
		<description>[...] the eminent release. If you&#8217;d like more details on how to use the runner, check out my most recent blog post for more [...]</description>
		<content:encoded><![CDATA[<p>[...] the eminent release. If you&#8217;d like more details on how to use the runner, check out my most recent blog post for more [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.533 seconds -->
