Install PHP-VCR PHPUnit-Testlistener in order to integrate PHP-VCR with PHPUnit.
# Add PHPUnit testlistenerphp composer.phar require php-vcr/phpunit-testlistener-vcr
You can use the @vcr [cassette filename]
annotation to turn on PHP-VCR for a single test.
/** * @vcr [cassette_path] */public function testInterceptsWithAnnotations(){ file_get_contents('http://example.com');}
Replace [cassette_path]
with the path to your cassette file relative to the cassette path (default tests/fixtures
). Requests are intercepted and stored into the cassette file provided via the @vcr
annotation. PHP-VCR is automatically turned on and off.