Пример #1
0
 /**
  * Test if the `getConstructor` method return null if a class has no constructor.
  */
 public function testGetConstructorReturnNull()
 {
     $class = new ReflectionClass(self::FIXTURE_NS . '\\ClassWithoutConstructor');
     $this->assertNull($class->getConstructor());
 }