Thread: PHPUnit Testing
View Single Post
  #1  
Old 05-06-2006, 06:51 PM
sjaguar13 sjaguar13 is offline
Member
GB Advanced User
 
Join Date: May 2006
Posts: 50
Default PHPUnit Testing

There is a little script I started using called PHPUnit. There are a bunch of <Language>Unit testing programs. The popular ones are CppUnit, NUnit, AnyUnit, and JUnit. PHPUnit is a great unit testing tool for PHP scripts to make sure everything is performing as expected. This is especially handy when you have big projects. You can stub functions to make sure they work before spending all that time and getting an error somewhere. Then you have to trace the control path to find out where it's coming from. This makes it a whole lot easier.

http://sourceforge.net/projects/phpunit/
Reply With Quote