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)