I have just installed PHPUnit via PEAR on Windows.
In my php.ini I have include_path=".;C:\php\pear"
My php installation is at C:\php and the PEAR directory contains a PHPUnit directory.
Following a tutorial it says I need to add this line of code to the top of my file
require_once "PHPUnit/Autoload.php";
This causes an a Fatal Error
Failed opening required 'PHPUnit/Autoload.php' (include_path='C:\php\pear\')
When I look in the PHPUnit directory there is no Autoload.php file.
Does it sound like PHPUnit has not installed properly? Or is there a newer way of including the relevant PHPUnit files?
Thanks for any help