Ejemplo n.º 1
0
 public function testSetIsFinal()
 {
     $method = new PhpMethod();
     $this->assertFalse($method->isFinal());
     $this->assertSame($method, $method->setFinal(true));
     $this->assertTrue($method->isFinal());
     $this->assertSame($method, $method->setFinal(false));
     $this->assertFalse($method->isFinal());
 }