public function StaticReflectionServiceTest::testGetParentClasses

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/StaticReflectionServiceTest.php, line 46

Class

StaticReflectionServiceTest
@group DCOM-93

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

public function testGetParentClasses() {
  $classes = $this->reflectionService
    ->getParentClasses(__CLASS__);
  $this
    ->assertTrue(count($classes) == 0, "The test class " . __CLASS__ . " should have no parents according to static reflection.");
}