Esempio n. 1
0
 /**
  * Test if the `getDeclaringClass` return a `ReflectionClass` object.
  */
 public function testGetDeclaringClass()
 {
     $method = new ReflectionMethod(self::FIXTURE_NS . '\\ClassWithMethods', 'foo');
     $this->assertInstanceOf('com\\mohiva\\common\\lang\\ReflectionClass', $method->getDeclaringClass());
 }