keisuke-matsufuji/phpunit-blocker
最新稳定版本:1.0.3
Composer 安装命令:
composer require keisuke-matsufuji/phpunit-blocker
包简介
Block phpunit filter options for over phpunit10
README 文档
README
PHPUnitBlocker is custom implementation of PHPUnit Framework StartedSubscriber. It mainly blocks PHPUnit's filter option to prevent misconfiguration in CI.
Note that this library works with PHPUni10 or later. If you are using PHPUnit 9 or earlier, please refer to the following. https://github.com/genkiroid/phpunit-filter-blocker
Installation
$ composer require keisuke-matsufuji/phpunit-blocker
Settings
To attach PHPUnitFilterBlocker as test listener, add following element to phpunit.xml. (Parent element is <phpunit>.)
<?xml version="1.0"?> <phpunit> <extensions> <bootstrap class="PHPUnitBlocker\Extension"> <parameter name="blockGroup" value="On"/> <parameter name="blockExcludeGroup" value="On"/> </bootstrap> </extensions> </phpunit>
If you want to block --group and --exclude-group options too, change Off to On setting value above.
About blocking
Block test case specification. (Fixed)
$ vendor/bin/phpunit tests/exampleTest.php
PHPUnit 10.5.10 by Sebastian Bergmann and contributors.
Test case specification has been disabled by phpunit-blocker. Stopped phpunit.
Block --filter option. (Fixed)
$ vendor/bin/phpunit tests/ --filter="Hello"
PHPUnit 10.5.10 by Sebastian Bergmann and contributors.
--filter option has been disabled by phpunit-blocker. Stopped phpunit.
Block --group option. (Option)
$ vendor/bin/phpunit tests/ --group=hello
PHPUnit 10.5.10 by Sebastian Bergmann and contributors.
--group option has been disabled by phpunit-blocker. Stopped phpunit.
Block --exclude-group option. (Option)
$ vendor/bin/phpunit tests/ --exclude-group=hello
PHPUnit 10.5.10 by Sebastian Bergmann and contributors.
--exclude-group option has been disabled by phpunit-blocker. Stopped phpunit.
No blocking example.
$ vendor/bin/phpunit tests/
PHPUnit 10.5.10 by Sebastian Bergmann and contributors.
.. 2 / 2 (100%)
Time: 83 ms, Memory: 6.00 MB
OK (2 tests, 2 assertions)
统计信息
- 总下载量: 1.25k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2024-02-06