public function RuntimeReflectionServiceTest::testGetParentClassesForAbsentClass in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php \Doctrine\Tests\Common\Persistence\Mapping\RuntimeReflectionServiceTest::testGetParentClassesForAbsentClass()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ RuntimeReflectionServiceTest.php, line 57
Class
- RuntimeReflectionServiceTest
- @group DCOM-93
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetParentClassesForAbsentClass() {
$this
->setExpectedException('Doctrine\\Common\\Persistence\\Mapping\\MappingException');
$this->reflectionService
->getParentClasses(__NAMESPACE__ . '\\AbsentClass');
}