Ejemplo n.º 1
0
 /**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionMethod
  * @group reflection
  * @group reflection::api
  * @group unittest
  * @expectedException \ReflectionException
  */
 public function testSetAccessibleThrowsNotSupportedException()
 {
     $method = new StaticReflectionMethod('foo', '', 0);
     $method->setAccessible(true);
 }