<?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: Set up a Zend Framework application using Zend_Application (including PHPUnit setup)</title>
	<atom:link href="http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/feed/" rel="self" type="application/rss+xml" />
	<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup</link>
	<description>IT stuff and more</description>
	<lastBuildDate>Wed, 22 Feb 2012 23:10:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Bart McLeod</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4651</link>
		<dc:creator>Bart McLeod</dc:creator>
		<pubDate>Sun, 08 May 2011 21:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4651</guid>
		<description>Hi Matthias,

Your unit test example is easily found by Google, but it is not completely correct. It in fact triggers issue http://zendframework.com/issues/browse/ZF-8193

In particular, the setup implementation should be different:

    public function setUp()
    {
        $this-&gt;bootstrap = new Zend_Application(
            APPLICATION_ENV,
            APPLICATION_PATH . &#039;/configs/application.ini&#039;
        );

        parent::setUp();
    }

The issue is not an issue, just wrong usage. I stumbled upon it when I used your code as an example for a controller unit test.

Regards,Bart McLeod</description>
		<content:encoded><![CDATA[<p>Hi Matthias,</p>
<p>Your unit test example is easily found by Google, but it is not completely correct. It in fact triggers issue <a href="http://zendframework.com/issues/browse/ZF-8193" rel="nofollow">http://zendframework.com/issues/browse/ZF-8193</a></p>
<p>In particular, the setup implementation should be different:</p>
<p>    public function setUp()<br />
    {<br />
        $this-&gt;bootstrap = new Zend_Application(<br />
            APPLICATION_ENV,<br />
            APPLICATION_PATH . &#8216;/configs/application.ini&#8217;<br />
        );</p>
<p>        parent::setUp();<br />
    }</p>
<p>The issue is not an issue, just wrong usage. I stumbled upon it when I used your code as an example for a controller unit test.</p>
<p>Regards,Bart McLeod</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chethan1ce007</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4625</link>
		<dc:creator>Chethan1ce007</dc:creator>
		<pubDate>Thu, 16 Dec 2010 12:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4625</guid>
		<description>Thats a great post really helped a lot
when i start to implement the same with my module 
am getting this error 
 PHP Fatal error:  Call to a member function getOptions() on a non-object in /var/www/ourbankBrazil/library/Mod/Controller/Action/Helper/LayoutLoader.php on line 9

Fatal error: Call to a member function getOptions() on a non-object in /var/www/ourbankBrazil/library/Mod/Controller/Action/Helper/LayoutLoader.php on line 9
</description>
		<content:encoded><![CDATA[<p>Thats a great post really helped a lot<br />
when i start to implement the same with my module<br />
am getting this error<br />
 PHP Fatal error:  Call to a member function getOptions() on a non-object in /var/www/ourbankBrazil/library/Mod/Controller/Action/Helper/LayoutLoader.php on line 9</p>
<p>Fatal error: Call to a member function getOptions() on a non-object in /var/www/ourbankBrazil/library/Mod/Controller/Action/Helper/LayoutLoader.php on line 9</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4081</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 29 Jun 2010 14:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4081</guid>
		<description>Matthias,

Thank you so much for this article. I practically grew some grey hair trying to understand Unit Testing of ZF projects. Some tutorials were so difficult to understand and their examples didn&#039;t work. With yours, I got it right the first time!

Thank you very much!</description>
		<content:encoded><![CDATA[<p>Matthias,</p>
<p>Thank you so much for this article. I practically grew some grey hair trying to understand Unit Testing of ZF projects. Some tutorials were so difficult to understand and their examples didn&#8217;t work. With yours, I got it right the first time!</p>
<p>Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4556</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 29 Jun 2010 14:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4556</guid>
		<description>Matthias,

Thank you so much for this article. I practically grew some grey hair trying to understand Unit Testing of ZF projects. Some tutorials were so difficult to understand and their examples didn&#039;t work. With yours, I got it right the first time!

Thank you very much!</description>
		<content:encoded><![CDATA[<p>Matthias,</p>
<p>Thank you so much for this article. I practically grew some grey hair trying to understand Unit Testing of ZF projects. Some tutorials were so difficult to understand and their examples didn&#8217;t work. With yours, I got it right the first time!</p>
<p>Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4042</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 20 May 2010 10:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4042</guid>
		<description>@Greg:
Had the same problem, in my case the OS-package-installer got me an old phpunit. As a consequence the bootstrap file wasn&#039;t executed. After update to the newest version, all worked fine.</description>
		<content:encoded><![CDATA[<p>@Greg:<br />
Had the same problem, in my case the OS-package-installer got me an old phpunit. As a consequence the bootstrap file wasn&#8217;t executed. After update to the newest version, all worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4555</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 20 May 2010 10:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4555</guid>
		<description>@Greg:
Had the same problem, in my case the OS-package-installer got me an old phpunit. As a consequence the bootstrap file wasn&#039;t executed. After update to the newest version, all worked fine.</description>
		<content:encoded><![CDATA[<p>@Greg:<br />
Had the same problem, in my case the OS-package-installer got me an old phpunit. As a consequence the bootstrap file wasn&#8217;t executed. After update to the newest version, all worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bitsurs</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4020</link>
		<dc:creator>Bitsurs</dc:creator>
		<pubDate>Tue, 20 Apr 2010 20:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4020</guid>
		<description>This article really explains exactly what you have to know to build websites in a minutes, using Zend Framework! 
many thanks</description>
		<content:encoded><![CDATA[<p>This article really explains exactly what you have to know to build websites in a minutes, using Zend Framework!<br />
many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bitsurs</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4554</link>
		<dc:creator>Bitsurs</dc:creator>
		<pubDate>Tue, 20 Apr 2010 20:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4554</guid>
		<description>This article really explains exactly what you have to know to build websites in a minutes, using Zend Framework! 
many thanks</description>
		<content:encoded><![CDATA[<p>This article really explains exactly what you have to know to build websites in a minutes, using Zend Framework!<br />
many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blog.nielslange.de &#187; Test Driven Development (TTD) with the Zend Framework</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3988</link>
		<dc:creator>blog.nielslange.de &#187; Test Driven Development (TTD) with the Zend Framework</dc:creator>
		<pubDate>Tue, 30 Mar 2010 21:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3988</guid>
		<description>[...] Set up a Zend Framework application using Zend_Application (including PHPUnit setup) [...]</description>
		<content:encoded><![CDATA[<p>[...] Set up a Zend Framework application using Zend_Application (including PHPUnit setup) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PixelMaker</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3969</link>
		<dc:creator>PixelMaker</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3969</guid>
		<description>Hi,

If I want to use $this-&gt;module in my index.phtml, what Should I need to place in Bootstrap.php file.

I will explain:

If you use this print_r($this-&gt;_getAllParams()); in any of your controllers, suppose contactController;

it will display 
Array ( 
        [controller] =&gt; contact 
        [action] =&gt; index 
        [module] =&gt; default 
      )  

instead of using that function (getAllParams()), I just want to initialize the controller, module, action values in bootstrap itself, so that I can use the values anywhere (controller / view) like $this-&gt;view-&gt;module in controller and $this-&gt;module in my views.

Please let me know how can we achieve this.

Thanks in Advance.
PixelMaker.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If I want to use $this-&gt;module in my index.phtml, what Should I need to place in Bootstrap.php file.</p>
<p>I will explain:</p>
<p>If you use this print_r($this-&gt;_getAllParams()); in any of your controllers, suppose contactController;</p>
<p>it will display<br />
Array (<br />
        [controller] =&gt; contact<br />
        [action] =&gt; index<br />
        [module] =&gt; default<br />
      )  </p>
<p>instead of using that function (getAllParams()), I just want to initialize the controller, module, action values in bootstrap itself, so that I can use the values anywhere (controller / view) like $this-&gt;view-&gt;module in controller and $this-&gt;module in my views.</p>
<p>Please let me know how can we achieve this.</p>
<p>Thanks in Advance.<br />
PixelMaker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PixelMaker</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4553</link>
		<dc:creator>PixelMaker</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4553</guid>
		<description>Hi,

If I want to use $this-&gt;module in my index.phtml, what Should I need to place in Bootstrap.php file.

I will explain:

If you use this print_r($this-&gt;_getAllParams()); in any of your controllers, suppose contactController;

it will display 
Array ( 
        [controller] =&gt; contact 
        [action] =&gt; index 
        [module] =&gt; default 
      )  

instead of using that function (getAllParams()), I just want to initialize the controller, module, action values in bootstrap itself, so that I can use the values anywhere (controller / view) like $this-&gt;view-&gt;module in controller and $this-&gt;module in my views.

Please let me know how can we achieve this.

Thanks in Advance.
PixelMaker.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If I want to use $this-&gt;module in my index.phtml, what Should I need to place in Bootstrap.php file.</p>
<p>I will explain:</p>
<p>If you use this print_r($this-&gt;_getAllParams()); in any of your controllers, suppose contactController;</p>
<p>it will display<br />
Array (<br />
        [controller] =&gt; contact<br />
        [action] =&gt; index<br />
        [module] =&gt; default<br />
      )  </p>
<p>instead of using that function (getAllParams()), I just want to initialize the controller, module, action values in bootstrap itself, so that I can use the values anywhere (controller / view) like $this-&gt;view-&gt;module in controller and $this-&gt;module in my views.</p>
<p>Please let me know how can we achieve this.</p>
<p>Thanks in Advance.<br />
PixelMaker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3956</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 11 Feb 2010 22:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3956</guid>
		<description>Hi, 
I have a problem with running it in my application in Zend Studio 7.1

I get:
Fatal error: Class &#039;ControllerTestCase&#039; not found in C:\Program Files (x86)\Zend\Apache2\htdocs\ekorki\tests\application\controllers\IndexControllerTest.php on line 3

Could you help me?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have a problem with running it in my application in Zend Studio 7.1</p>
<p>I get:<br />
Fatal error: Class &#8216;ControllerTestCase&#8217; not found in C:\Program Files (x86)\Zend\Apache2\htdocs\ekorki\tests\application\controllers\IndexControllerTest.php on line 3</p>
<p>Could you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4552</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 11 Feb 2010 22:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4552</guid>
		<description>Hi, 
I have a problem with running it in my application in Zend Studio 7.1

I get:
Fatal error: Class &#039;ControllerTestCase&#039; not found in C:Program Files (x86)ZendApache2htdocsekorkitestsapplicationcontrollersIndexControllerTest.php on line 3

Could you help me?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have a problem with running it in my application in Zend Studio 7.1</p>
<p>I get:<br />
Fatal error: Class &#8216;ControllerTestCase&#8217; not found in C:Program Files (x86)ZendApache2htdocsekorkitestsapplicationcontrollersIndexControllerTest.php on line 3</p>
<p>Could you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rhys</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3917</link>
		<dc:creator>Rhys</dc:creator>
		<pubDate>Fri, 29 Jan 2010 13:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3917</guid>
		<description>This is a great tutorial thanks.

But one question I have is that you put a lot more in application.ini than I&#039;ve seen in other zend implementations. What are the reasons for putting stuff here rather than in bootstrap.php or index.php?

Cheers</description>
		<content:encoded><![CDATA[<p>This is a great tutorial thanks.</p>
<p>But one question I have is that you put a lot more in application.ini than I&#8217;ve seen in other zend implementations. What are the reasons for putting stuff here rather than in bootstrap.php or index.php?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rhys</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4551</link>
		<dc:creator>Rhys</dc:creator>
		<pubDate>Fri, 29 Jan 2010 13:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4551</guid>
		<description>This is a great tutorial thanks.

But one question I have is that you put a lot more in application.ini than I&#039;ve seen in other zend implementations. What are the reasons for putting stuff here rather than in bootstrap.php or index.php?

Cheers</description>
		<content:encoded><![CDATA[<p>This is a great tutorial thanks.</p>
<p>But one question I have is that you put a lot more in application.ini than I&#8217;ve seen in other zend implementations. What are the reasons for putting stuff here rather than in bootstrap.php or index.php?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3767</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3767</guid>
		<description>I would say it&#039;s a great guide which helps me especially in Unit Testing!

I&#039;m wondering I tried to do with your admin module testing. It does not seem to work. Can you please help?  Thanks

My project structure is below;

&lt;code&gt;
application/
   modules/
      users/
      admin/
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I would say it&#8217;s a great guide which helps me especially in Unit Testing!</p>
<p>I&#8217;m wondering I tried to do with your admin module testing. It does not seem to work. Can you please help?  Thanks</p>
<p>My project structure is below;</p>
<p><code><br />
application/<br />
   modules/<br />
      users/<br />
      admin/<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4550</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4550</guid>
		<description>I would say it&#039;s a great guide which helps me especially in Unit Testing!

I&#039;m wondering I tried to do with your admin module testing. It does not seem to work. Can you please help?  Thanks

My project structure is below;

&lt;code&gt;
application/
   modules/
      users/
      admin/
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I would say it&#8217;s a great guide which helps me especially in Unit Testing!</p>
<p>I&#8217;m wondering I tried to do with your admin module testing. It does not seem to work. Can you please help?  Thanks</p>
<p>My project structure is below;</p>
<p><code><br />
application/<br />
   modules/<br />
      users/<br />
      admin/<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishan</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3630</link>
		<dc:creator>Krishan</dc:creator>
		<pubDate>Wed, 21 Oct 2009 05:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3630</guid>
		<description>a very good article to help a beginner to set up a zend frame work application....Thanks a lot.....</description>
		<content:encoded><![CDATA[<p>a very good article to help a beginner to set up a zend frame work application&#8230;.Thanks a lot&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishan</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4549</link>
		<dc:creator>Krishan</dc:creator>
		<pubDate>Wed, 21 Oct 2009 05:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4549</guid>
		<description>a very good article to help a beginner to set up a zend frame work application....Thanks a lot.....</description>
		<content:encoded><![CDATA[<p>a very good article to help a beginner to set up a zend frame work application&#8230;.Thanks a lot&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3626</link>
		<dc:creator>W</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3626</guid>
		<description>Thank you very much! This post helped me to start my own testing in ZF. However, if someone is using lampp 1.7.2, there is a problem, because PHPUnit in lampp is to old and it must be upgraded. I wrote short post about how to do this upgrade here &lt;a href=&#039;http://shortrecipes.blogspot.com/2009/10/xampp-lampp-upgrade-phpunit-in-lampp.html&#039; title=&#039;PHPUnit upgrade&#039; rel=&quot;nofollow&quot;&gt;. Hope it will be useful.</description>
		<content:encoded><![CDATA[<p>Thank you very much! This post helped me to start my own testing in ZF. However, if someone is using lampp 1.7.2, there is a problem, because PHPUnit in lampp is to old and it must be upgraded. I wrote short post about how to do this upgrade here <a href='http://shortrecipes.blogspot.com/2009/10/xampp-lampp-upgrade-phpunit-in-lampp.html' title='PHPUnit upgrade' rel="nofollow">. Hope it will be useful.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4548</link>
		<dc:creator>W</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4548</guid>
		<description>Thank you very much! This post helped me to start my own testing in ZF. However, if someone is using lampp 1.7.2, there is a problem, because PHPUnit in lampp is to old and it must be upgraded. I wrote short post about how to do this upgrade here &lt;a href=&#039;http://shortrecipes.blogspot.com/2009/10/xampp-lampp-upgrade-phpunit-in-lampp.html&#039; title=&#039;PHPUnit upgrade&#039; rel=&quot;nofollow&quot;&gt;. Hope it will be useful.</description>
		<content:encoded><![CDATA[<p>Thank you very much! This post helped me to start my own testing in ZF. However, if someone is using lampp 1.7.2, there is a problem, because PHPUnit in lampp is to old and it must be upgraded. I wrote short post about how to do this upgrade here <a href='http://shortrecipes.blogspot.com/2009/10/xampp-lampp-upgrade-phpunit-in-lampp.html' title='PHPUnit upgrade' rel="nofollow">. Hope it will be useful.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Federico Cargnelutti (fedecarg) 's status on Sunday, 18-Oct-09 22:59:47 UTC - Identi.ca</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3625</link>
		<dc:creator>Federico Cargnelutti (fedecarg) 's status on Sunday, 18-Oct-09 22:59:47 UTC - Identi.ca</dc:creator>
		<pubDate>Sun, 18 Oct 2009 23:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3625</guid>
		<description>[...]  http://maff.ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-...       a few seconds ago  from web [...]</description>
		<content:encoded><![CDATA[<p>[...]  <a href="http://maff.ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-.." rel="nofollow">http://maff.ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-..</a>.       a few seconds ago  from web [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacques Marques</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3572</link>
		<dc:creator>Jacques Marques</dc:creator>
		<pubDate>Mon, 28 Sep 2009 22:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3572</guid>
		<description>How can I run this example in Zend Studio 7.0?

Thanks</description>
		<content:encoded><![CDATA[<p>How can I run this example in Zend Studio 7.0?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacques Marques</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-4547</link>
		<dc:creator>Jacques Marques</dc:creator>
		<pubDate>Mon, 28 Sep 2009 22:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-4547</guid>
		<description>How can I run this example in Zend Studio 7.0?

Thanks</description>
		<content:encoded><![CDATA[<p>How can I run this example in Zend Studio 7.0?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mathias</title>
		<link>http://ailoo.net/2009/04/set-up-a-zend-framework-application-using-zend_application-including-phpunit-setup/#comment-3550</link>
		<dc:creator>Mathias</dc:creator>
		<pubDate>Tue, 22 Sep 2009 20:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://maff.ailoo.net/?p=687#comment-3550</guid>
		<description>Thanks David, completely forgot about that possibility.</description>
		<content:encoded><![CDATA[<p>Thanks David, completely forgot about that possibility.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

