Isn't PHPUnit supposed to require the class itself using the naming conventiong "ClassTest"?
- I have a php file "Router.php" with a class Router
My PHPUnit testing class is defined as following:
class RouterTest extends PHPUnit_Framework_TestCase
However it raises a fatal error for file not found "Router.php". If I require it manually everything is ok.
What's wrong with it?