You are here

public function ClassLoaderTest::testLoadNonExistingClass in Plug 7

File

lib/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest.php, line 81

Class

ClassLoaderTest

Namespace

Doctrine\Tests\Common

Code

public function testLoadNonExistingClass() {
  $classLoader = new ClassLoader('ClassLoaderTest', __DIR__);
  $this
    ->assertFalse($classLoader
    ->loadClass('ClassLoaderTest\\Non\\Existing\\ClassName'));
}