for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* All EagerLoader plugin tests
*/
class AllEagerLoaderTest extends PHPUnit_Framework_TestSuite {
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
* Assemble Test Suite
*
* @return PHPUnit_Framework_TestSuite
public static function suite() {
$suite = new CakeTestSuite('All Tests');
$suite->addTestDirectoryRecursive(App::pluginPath('EagerLoader') . 'Test' . DS . 'Case' . DS);
return $suite;
}
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.