<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>/var/log/vshivak - Test-Driven</title>
    <link>http://kuziel.info/log/</link>
    <description>thoughts of Marek Kuziel</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.0.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Few links to Selenium related articles</title>
    <link>http://kuziel.info/log/archives/2006/03/19/Few-links-to-Selenium-related-articles</link>
            <category>Lab</category>
            <category>PHP</category>
            <category>Test-Driven</category>
            <category>vshivak</category>
    
    <comments>http://kuziel.info/log/archives/2006/03/19/Few-links-to-Selenium-related-articles#comments</comments>
    <wfw:comment>http://kuziel.info/log/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://kuziel.info/log/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Marek Kuziel)</author>
    <content:encoded>
    &lt;p&gt;I am quite interested in Selenium these days. Selenium is a unit testing framework for web application testing. Exactly the type of tool what I&amp;#39;ve been looking for a while.&lt;/p&gt;&lt;p&gt;I&amp;#39;ve done little research to find at least something about Selenium and its usage for PHP web applications and PHP unit testing frameworks.&lt;/p&gt;&lt;p&gt;Here are some links to Selenium related articles I found: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.xisc.com/wiki/index.php/Functional_test_using_Selenium&quot; title=&quot;unctional_test_using_Selenium&quot;&gt;PRADO wiki&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.sitepoint.com/forums/showthread.php?t=308727&amp;amp;goto=nextnewest&quot; title=&quot;SitePoint Forums&quot;&gt;SitePoint Forums&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.josephmoore.net/2005/11/using-seleniums-waitforvalue.html&quot; title=&quot;Agile reality - Joseph Moore blog&quot;&gt;Agile reality - Joseph Moore blog&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www-128.ibm.com/developerworks/java/library/wa-selenium-ajax/index.html&quot; title=&quot;IBM&amp;#39;s developer works&quot;&gt;IBM&amp;#39;s developer works&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.openqa.org/selenium-ide/&quot; title=&quot;Selenium IDE - Firefox extension&quot;&gt;Selenium IDE - Firefox extension&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; 
    </content:encoded>

    <pubDate>Sun, 19 Mar 2006 00:32:00 +1300</pubDate>
    <guid isPermaLink="false">http://kuziel.info/log/archives/2006/03/19/6</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Continuous Integration for PHP via PHPUnit</title>
    <link>http://kuziel.info/log/archives/2006/03/13/Continuous-Integration-for-PHP-via-PHPUnit</link>
            <category>Lab</category>
            <category>PHP</category>
            <category>Test-Driven</category>
            <category>vshivak</category>
    
    <comments>http://kuziel.info/log/archives/2006/03/13/Continuous-Integration-for-PHP-via-PHPUnit#comments</comments>
    <wfw:comment>http://kuziel.info/log/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://kuziel.info/log/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (Marek Kuziel)</author>
    <content:encoded>
    &lt;p&gt;Sebastian Bergmann pointed out a blog entry of Sebastian Nohn who has written blog about how to setup Continuous Integration with CruiseControl, Ant and PHPUnit.&lt;/p&gt;&lt;p&gt;First of all, I thought &amp;#39;Why not Phing instead of Ant?&amp;#39;, but the blog has a good explanation for it and also there is an interesting comment, that you actually can use Ant&amp;#39;sExecTask to call your Phing build files when you need to. So, it&amp;#39;s all good. I can still use Phing for packaging my stuff into PEAR package format.&lt;/p&gt;&lt;p&gt;Reading through the blog and clicking on links of words I&amp;#39;ve never heard before (Selenium?), I&amp;#39;ve discovered (as you do) the whole new test driven universe. Not as I don&amp;#39;t use unit testing. I do! But, that means I can do the test driven development even better &lt;img src=&quot;http://kuziel.info/log/templates/default/img/emoticons/tongue.png&quot; alt=&quot;:-P&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.martinfowler.com/articles/continuousIntegration.html&quot; title=&quot;Continuous Integration&quot;&gt;Continuous Integration&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://nohn.org/blog/archives/8-Continuous-Builds-with-CruiseControl,-Ant-and-PHPUnit.html&quot; title=&quot;Sebastian Nohn blog entry&quot;&gt;Sebastian Nohn blog entry&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.sebastian-bergmann.de/blog/archives/583-Using-PHPUnit-with-CruiseControl.html&quot; title=&quot;Sebastian - Bergmann blog entry&quot;&gt;Sebastian Bergmann blog entry&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.openqa.org/selenium/index.html&quot; title=&quot;Selenium - Web application testing framework&quot;&gt;Selenium&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; 
    </content:encoded>

    <pubDate>Mon, 13 Mar 2006 00:21:00 +1300</pubDate>
    <guid isPermaLink="false">http://kuziel.info/log/archives/2006/03/13/5</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/</creativeCommons:license>
</item>

</channel>
</rss>