Ejemplo n.º 1
0
 /**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionMethod
  * @group reflection
  * @group reflection::api
  * @group unittest
  */
 public function testGetStartLineReturnsExpectedValue()
 {
     $method = new StaticReflectionMethod('foo', '', 0);
     $method->initStartLine(42);
     $this->assertSame(42, $method->getStartLine());
 }