phpunit filter blocker
1.0.0
PHPUnitFilterBlocker — это специальная реализация PHPUnit Framework 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)