(c) Contributors of the Neos Project - www.neos.io This package is Open Source Software. For the full copyright and license information, please view the LICENSE file which was distributed with this source code.
 /**
  * @test
  */
 public function finalClassesCanBeAdvised()
 {
     $targetClass = new Fixtures\TargetClassWithFinalModifier();
     $this->assertSame('nothing is final!', $targetClass->someMethod());
 }