You are here

public function RuntimeReflectionServiceTest::testGetParentClassesForAbsentClass in Plug 7

File

lib/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php, line 57

Class

RuntimeReflectionServiceTest
@group DCOM-93

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

public function testGetParentClassesForAbsentClass() {
  $this
    ->setExpectedException('Doctrine\\Common\\Persistence\\Mapping\\MappingException');
  $this->reflectionService
    ->getParentClasses(__NAMESPACE__ . '\\AbsentClass');
}