You are here

public function RuntimeReflectionServiceTest::testGetReflectionClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php \Doctrine\Tests\Common\Persistence\Mapping\RuntimeReflectionServiceTest::testGetReflectionClass()

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php, line 63

Class

RuntimeReflectionServiceTest
@group DCOM-93

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

public function testGetReflectionClass() {
  $class = $this->reflectionService
    ->getClass(__CLASS__);
  $this
    ->assertInstanceOf("ReflectionClass", $class);
}