graze / hamcrest-test-listener
Hamcrest断言库的PHPUnit测试监听器。
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: 2024-09-24 04:40:31 UTC
README
Hamcrest断言库的PHPUnit测试监听器。
安装
注意
对于PHPUnit >= 6,请使用版本 >= 3.0
对于PHPUnit < 6,请使用版本 < 3.0
~$ composer require --dev graze/hamcrest-test-listener
使用方法
在您的 phpunit.xml 文件中,添加以下内容
<phpunit beStrictAboutTestsThatDoNotTestAnything="false"> <!-- PHPUnit will not consider Hamcrest assertions --> <listeners> <listener class="\Hamcrest\Adapter\PHPUnit\TestListener"/> </listeners> </phpunit>