which unit-test framework for PHP: simpletest, phpunit or ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:56:56Z http://stackoverflow.com/feeds/question/279564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/279564/which-unit-test-framework-for-php-simpletest-phpunit-or 5 which unit-test framework for PHP: simpletest, phpunit or ? Ken 2008-11-10T23:35:11Z 2008-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#280580 1 Answer by Ben Dowling for which unit-test framework for PHP: simpletest, phpunit or ? Ben Dowling 2008-11-11T10:49:10Z 2008-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#280881 1 Answer by troelskn for which unit-test framework for PHP: simpletest, phpunit or ? troelskn 2008-11-11T13:33:33Z 2008-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#282716 0 Answer by Till for which unit-test framework for PHP: simpletest, phpunit or ? Till 2008-11-12T01:25:49Z 2008-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>