<?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: Flex 4: Create a simple Unit Test in FB</title>
	<atom:link href="http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/</link>
	<description>{Technology Enthusiast &#38; Developer}</description>
	<lastBuildDate>Thu, 19 Jan 2012 21:46:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Abhilash Nagar</title>
		<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/comment-page-1/#comment-893</link>
		<dc:creator>Abhilash Nagar</dc:creator>
		<pubDate>Fri, 13 Aug 2010 09:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.hufkens.net/?p=768#comment-893</guid>
		<description>A very nice code examples.Thanks.I want to know how to create test cases for ApplicationFacade and Mediators.</description>
		<content:encoded><![CDATA[<p>A very nice code examples.Thanks.I want to know how to create test cases for ApplicationFacade and Mediators.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alain</title>
		<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/comment-page-1/#comment-872</link>
		<dc:creator>Alain</dc:creator>
		<pubDate>Tue, 18 May 2010 11:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.hufkens.net/?p=768#comment-872</guid>
		<description>That seems logical. 
Thanx!</description>
		<content:encoded><![CDATA[<p>That seems logical.<br />
Thanx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard willis</title>
		<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/comment-page-1/#comment-871</link>
		<dc:creator>richard willis</dc:creator>
		<pubDate>Tue, 18 May 2010 11:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.hufkens.net/?p=768#comment-871</guid>
		<description>Ah, answer seems to be to browse to &#039;flexUnitTests&#039; package oneself when the &#039;New &gt; TestCase Class&#039; dialog appears</description>
		<content:encoded><![CDATA[<p>Ah, answer seems to be to browse to &#8216;flexUnitTests&#8217; package oneself when the &#8216;New &gt; TestCase Class&#8217; dialog appears</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alain</title>
		<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/comment-page-1/#comment-870</link>
		<dc:creator>Alain</dc:creator>
		<pubDate>Tue, 18 May 2010 11:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.hufkens.net/?p=768#comment-870</guid>
		<description>Hi Richard,

Thanx for commenting, but I wrote this post with the Flash Builder Beta version. That implies that I&#039;m not sure if everything is still working as I explained it. I will need to check this with the latest version.

But you have a point. In my experience you should separate the Test classes from the actual classes. You can still refactor (move) the Test Class to your specific test namespace. This refactor feature us also new to Flash Builder.

Hope this helps</description>
		<content:encoded><![CDATA[<p>Hi Richard,</p>
<p>Thanx for commenting, but I wrote this post with the Flash Builder Beta version. That implies that I&#8217;m not sure if everything is still working as I explained it. I will need to check this with the latest version.</p>
<p>But you have a point. In my experience you should separate the Test classes from the actual classes. You can still refactor (move) the Test Class to your specific test namespace. This refactor feature us also new to Flash Builder.</p>
<p>Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard willis</title>
		<link>http://www.hufkens.net/2009/06/flex-4-create-a-simple-unit-test-in-flash-builder/comment-page-1/#comment-869</link>
		<dc:creator>richard willis</dc:creator>
		<pubDate>Tue, 18 May 2010 10:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.hufkens.net/?p=768#comment-869</guid>
		<description>Alain, nice simple post, thanks. Works a treat

Except for one thing though. This section:

Enter the Name of the TestCase Class (in this case: MyTestClass), select the Class to test (in this case: MyObject) and select Finish. Flash Builder now generates several items. First a new folder name flexUnitTests is generated

Having made a new package com.website, put new class NewTest.as in it, and right-clicked it and selected &#039;New &gt; Test Case Class&#039; the new test case class in question turned up NOT in the formerly created &#039;flexUnitTests&#039;, but in the same folder as NewTest.as itself.

Said new unit test class DOES WORK, but I can see my package structures turning into a right mess if the unit test for every single class I have is lumped in alongside the class it tests.

Is there anyway this can be changed?</description>
		<content:encoded><![CDATA[<p>Alain, nice simple post, thanks. Works a treat</p>
<p>Except for one thing though. This section:</p>
<p>Enter the Name of the TestCase Class (in this case: MyTestClass), select the Class to test (in this case: MyObject) and select Finish. Flash Builder now generates several items. First a new folder name flexUnitTests is generated</p>
<p>Having made a new package com.website, put new class NewTest.as in it, and right-clicked it and selected &#8216;New &gt; Test Case Class&#8217; the new test case class in question turned up NOT in the formerly created &#8216;flexUnitTests&#8217;, but in the same folder as NewTest.as itself.</p>
<p>Said new unit test class DOES WORK, but I can see my package structures turning into a right mess if the unit test for every single class I have is lumped in alongside the class it tests.</p>
<p>Is there anyway this can be changed?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

