/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionMethod
  * @group reflection
  * @group reflection::api
  * @group unittest
  */
 public function testIsDeprecatedAlwaysReturnsFalse()
 {
     $method = new StaticReflectionMethod('foo', '', 0);
     $this->assertFalse($method->isDeprecated());
 }