public function ClassLoaderTest::testLoadNonExistingClass in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ ClassLoaderTest.php, line 81
Class
Namespace
Doctrine\Tests\CommonCode
public function testLoadNonExistingClass() {
$classLoader = new ClassLoader('ClassLoaderTest', __DIR__);
$this
->assertFalse($classLoader
->loadClass('ClassLoaderTest\\Non\\Existing\\ClassName'));
}