php-vcr / phpunit-testlistener-vcr

Integrates PHPUnit with PHP-VCR.
MIT License
61 stars 50 forks source link

Update to accept test attributes #44

Closed cg-x closed 1 month ago

cg-x commented 1 month ago

PHPUnit 11 has deprecated annotations that can be used in special PHP comments to add metadata to test classes and test methods in favour of attributes. While both are still supported, the listener will first check if the attribute is set (#[Vcr('fixture/cassette.json')]), and then check the annotations as a fallback (/** @vcr fixture/cassette.json **/).