public function testCanHandleUnrelatedIgnoredMethods() { $this->
expectDeprecation('Since symfony/serializer 6.4: Method "Symfony\Component\Serializer\Tests\Fixtures\Annotations\Entity45016::badIgnore()" uses Doctrine Annotations to configure serialization, which is deprecated. Use PHP attributes instead.'
);
parent::
testCanHandleUnrelatedIgnoredMethods();
} public function testIgnoreGetterWithRequiredParameterIfIgnoreAnnotationIsUsed() { $this->
expectDeprecation('Since symfony/serializer 6.4: Method "Symfony\Component\Serializer\Tests\Fixtures\Annotations\IgnoreDummyAdditionalGetter::getMyValue()" uses Doctrine Annotations to configure serialization, which is deprecated. Use PHP attributes instead.'
);
parent::
testIgnoreGetterWithRequiredParameterIfIgnoreAnnotationIsUsed();
} protected function createLoader(): AnnotationLoader
{ return new AnnotationLoader(new AnnotationReader());
} protected function getNamespace(): string
{ return 'Symfony\Component\Serializer\Tests\Fixtures\Annotations';
}}