phpunit filter blocker
1.0.0
PHPUnitFilterBlocker 是 PHPUnit 框架 TestListener 的自定义实现。它主要阻止 PHPUnit 的过滤选项,以防止 CI 中的错误配置。
$ composer require genkiroid/phpunit-filter-blocker
要将 PHPUnitFilterBlocker 附加为测试侦听器,请将以下元素添加到 phpunit.xml。 (父元素是
。)
< listeners >
< listener class = " PHPUnitFilterBlockerListener " >
< arguments >
< array >
< element key = " blockGroup " >
< boolean >false boolean >
element >
< element key = " blockExcludeGroup " >
< boolean >false boolean >
element >
array >
arguments >
listener >
listeners >
如果您也想阻止--group
和--exclude-group
选项,请将上面的设置值false
更改为true
。
块测试用例规范。 (固定的)
$ vendor/bin/phpunit tests/exampleTest.php
PHPUnit 9.0.1 by Sebastian Bergmann and contributors.
Test case specification has been disabled by phpunit-filter-blocker. Stopped phpunit.
阻止--filter
选项。 (固定的)
$ vendor/bin/phpunit tests/ --filter="Hello"
PHPUnit 9.0.1 by Sebastian Bergmann and contributors.
--filter option has been disabled by phpunit-filter-blocker. Stopped phpunit.
阻止--group
选项。 (选项)
$ vendor/bin/phpunit tests/ --group=hello
PHPUnit 9.0.1 by Sebastian Bergmann and contributors.
--group option has been disabled by phpunit-filter-blocker. Stopped phpunit.
阻止--exclude-group
选项。 (选项)
$ vendor/bin/phpunit tests/ --exclude-group=hello
PHPUnit 9.0.1 by Sebastian Bergmann and contributors.
--exclude-group option has been disabled by phpunit-filter-blocker. Stopped phpunit.
没有阻塞示例。
$ vendor/bin/phpunit tests/
PHPUnit 9.0.1 by Sebastian Bergmann and contributors.
.. 2 / 2 (100%)
Time: 83 ms, Memory: 6.00 MB
OK (2 tests, 2 assertions)