How to make phpunit.xml in CakePHP2.4?
I made:
<phpunit backupGlobals="true"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./app/Test/Case</directory>
</testsuite>
</testsuites>
</phpunit>
And
cd /Project/ phpunit
And got an error
Fatal error: Class 'CakeTestSuite' not found in PROJECT_NAME\app\Test\Case\AllTestsTest.php on line 36
Thanks for any help.