Example #1
0
 public function testGetClassLoader()
 {
     $cl = new ClassLoader('ClassLoaderTest', __DIR__);
     $cl->register();
     $this->assertTrue(ClassLoader::getClassLoader('ClassLoaderTest\\ClassD') instanceof \Doctrine\Common\ClassLoader);
     $this->assertNull(ClassLoader::getClassLoader('This\\Class\\Does\\Not\\Exist'));
     $cl->unregister();
 }