public function ProxyClassGeneratorTest::testNoConfigDirThrowsException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/ProxyClassGeneratorTest.php \Doctrine\Tests\Common\Proxy\ProxyClassGeneratorTest::testNoConfigDirThrowsException()
 
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ ProxyClassGeneratorTest.php, line 201  
Class
- ProxyClassGeneratorTest
 - Test the proxy generator. Its work is generating on-the-fly subclasses of a given model, which implement the Proxy pattern.
 
Namespace
Doctrine\Tests\Common\ProxyCode
public function testNoConfigDirThrowsException() {
  $this
    ->setExpectedException('Doctrine\\Common\\Proxy\\Exception\\InvalidArgumentException');
  new ProxyGenerator(null, null);
}