Tagged Questions

4
votes
4answers
260 views

PHP Unit Testing without a framework… Possible? Advisable?

When one starts searching for PHP unit tests, one usually stumbles upon: PHPUnit. SimpleTest. A plethora of blogs explaining how to use PHPUnit and SimpleTest. StackOverflow questions about PHPUnit ...
2
votes
2answers
347 views

Converting a home-brew test application to a standard unit test framework

I've got a LOT of tests written for a piece of software (which is a GREAT thing) but it was built essentially as a standalone test in C#. While this works well enough, it suffers from a few ...