graze / hamcrest-test-listener
A PHPUnit test listener for the hamcrest assertion library.
v3.0.0
2017-07-27 18:48 UTC
Requires
- php: ^7.0
- hamcrest/hamcrest-php: ^2.0
- phpunit/phpunit: ^6.0
Requires (Dev)
- mockery/mockery: dev-master
Conflicts
- phpunit/phpunit: 5.1.0
This package is auto-updated.
Last update: 2026-02-24 07:54:15 UTC
README
A PHPUnit test listener for the hamcrest assertion library.
Installation
NOTE:
For PHPUnit >= 6, please use version >= 3.0
For PHPUnit < 6, please use version < 3.0
~$ composer require --dev graze/hamcrest-test-listener
Usage
In your phpunit.xml file, add the following:
<phpunit beStrictAboutTestsThatDoNotTestAnything="false"> <!-- PHPUnit will not consider Hamcrest assertions --> <listeners> <listener class="\Hamcrest\Adapter\PHPUnit\TestListener"/> </listeners> </phpunit>