Пример #1
0
 /**
  * Test if the `getParentClass` method returns null if the class has no parent.
  */
 public function testGetParentClassReturnNull()
 {
     $class = new ReflectionClass(self::FIXTURE_NS . '\\ClassWithoutParent');
     $this->assertNull($class->getParentClass());
 }