/** * @return void * @covers \pdepend\reflection\api\StaticReflectionMethod * @group reflection * @group reflection::api * @group unittest */ public function testIsFinalReturnsTrueWhenModifierWasSupplied() { $method = new StaticReflectionMethod('foo', '', \ReflectionMethod::IS_FINAL); $this->assertTrue($method->isFinal()); }