which unit-test framework for PHP: simpletest, phpunit or ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T07:56:56Zhttp://stackoverflow.com/feeds/question/279564http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/279564/which-unit-test-framework-for-php-simpletest-phpunit-or5which unit-test framework for PHP: simpletest, phpunit or ?Ken2008-11-10T23:35:11Z2008-11-12T01:25:49Z
<p>I'm a big fan of <a href="http://www.simpletest.org/" rel="nofollow">simpletest</a> because it's what I know. It has excellent support for mocking and web-testing. </p>
<p>But I'm always scared of stagnating so any compelling arguments to switch would be appreciated.</p>
http://stackoverflow.com/questions/279564/which-unit-test-framework-for-php-simpletest-phpunit-or/280580#2805801Answer by Ben Dowling for which unit-test framework for PHP: simpletest, phpunit or ?Ben Dowling2008-11-11T10:49:10Z2008-11-11T10:49:10Z<p>I haven't used SimpleTest myself, so I can't say much in a way of comparison. Just by observation though, the PHPUnit syntax seems much more verbose.</p>
<p>The <a href="http://www.phpunit.de/pocket_guide/3.3/en/index.html" rel="nofollow">PHPUnit Manual</a> is a great source of documentation, and covers most areas of the framework. My only complaint about the manual is that some areas lack detail.</p>
<p>My main reason for using PHPUnit over SimpleTest is that it has great <a href="http://phing.info/trac/" rel="nofollow">Phing</a> integration.</p>
http://stackoverflow.com/questions/279564/which-unit-test-framework-for-php-simpletest-phpunit-or/280881#2808811Answer by troelskn for which unit-test framework for PHP: simpletest, phpunit or ?troelskn2008-11-11T13:33:33Z2008-11-11T13:33:33Z<p>I don't think either is going away anytime soon. Simpletest is maintained by a small, but involved group of people.</p>
<p>PHPUnit seems to have a bigger userbase, which may count as an argument for switching. I'm quite happy with Simpletest though.</p>
http://stackoverflow.com/questions/279564/which-unit-test-framework-for-php-simpletest-phpunit-or/282716#2827160Answer by Till for which unit-test framework for PHP: simpletest, phpunit or ?Till2008-11-12T01:25:49Z2008-11-12T01:25:49Z<p>I just answered <a href="http://stackoverflow.com/questions/282150/how-do-i-write-unit-tests-in-php">a similar question</a> and added that there's <a href="http://qa.php.net/write-test.php" rel="nofollow">phpt</a>. phpt also integrates into PHPUnit.</p>