/**
  * @test
  */
 public function proxyClassesStillContainAnnotationsFromItsOriginalClass()
 {
     $class = new ClassReflection(Fixtures\PrototypeClassA::class);
     $method = $class->getMethod('setSomeProperty');
     $this->assertTrue($class->implementsInterface(ProxyInterface::class));
     $this->assertTrue($class->isTaggedWith('scope'));
     $this->assertTrue($method->isTaggedWith('session'));
 }