Tôi đang vật lộn để chạy một phương thức thử nghiệm duy nhất có tên testSaveAndDrop
trong tệp escalation/EscalationGroupTest.php
với phpunit
. Tôi đã thử các kết hợp sau:
phpunit EscalationGroupTest escalation/EscalationGroupTest.php --filter=escalation/EscalationGroupTest.php::testSaveAndDrop
phpunit EscalationGroupTest escalation/EscalationGroupTest.php --filter=EscalationGroupTest.php::testSaveAndDrop
phpunit EscalationGroupTest escalation/EscalationGroupTest.php --filter=EscalationGroupTest::testSaveAndDrop
phpunit EscalationGroupTest escalation/EscalationGroupTest.php --filter=testSaveAndDrop
Trong mỗi trường hợp, tất cả methode thử nghiệm trong tệp escalation/EscalationGroupTest.php
được thực thi. Làm thế nào để chọn chỉ một phương thức thay thế?
Tên của lớp là EscalationGroupTest
và phiên bản phpunit
là 3.2.8.