phpunit-testlistener-vcr
phpunit-testlistener-vcr copied to clipboard
Integrates PHPUnit with PHP-VCR.
Basically the same as #37, but tests against PHP 8 on Bionic (where the package exists), and also allows newer `phpunit` (which is required for PHP 8). Thanks.
66x: substr(): Passing null to parameter #1 ($string) of type string is deprecated 66x in VCRTestListener::startTest from VCR\PHPUnit\TestListener
New tag: 3.1.1
I know its an edge case, but TestListener dont recognize @vcr tag, if you use it with single line comments: Not working: ``` php /** @vcr vcr.yaml */ function testSomething...
Since this project is for PHPUnit and [uses PHPUnit classes](https://github.com/php-vcr/phpunit-testlistener-vcr/blob/master/src/VCRTestListener.php#L6-L11), doesn't it explicitly depend on PHPUnit? In particular, shouldn't it depend on a specific PHPUnit version that is compatible? This...
New tag: 3.2.2
New tag: 3.0.1
I was facing an issue when some code is loaded in the `setUp` function in my tests and the VCR was activated too late. The solution I found is to...