public function testThrowsOnContextOnInvalidMethod() { $this->
expectDeprecation('Since symfony/serializer 6.4: Method "Symfony\Component\Serializer\Tests\Fixtures\Annotations\BadMethodContextDummy::badMethod()" uses Doctrine Annotations to configure serialization, which is deprecated. Use PHP attributes instead.'
);
parent::
testThrowsOnContextOnInvalidMethod();
} 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
{