在PHPUnit的幫助,它會顯示以下內容:使用PHPUnit,你如何測試兩個或更多的組?
--group ... Only runs tests from the specified group(s).
--exclude-group ... Exclude tests from the specified group(s).
很容易爲一組。這工作:
phpunit --group fast
現在,我不能完全弄清楚如何做到這一點與多個組。以下不適用於我:
phpunit --group fast unit # It believes you want to test unit.php
phpunit --group fast, unit # It believes you want to test unit.php
phpunit --group "fast unit" # It looks for a single group "fast unit"
phpunit --groups fast, unit # There is no option, groups
phpunit --group fast --group unit # Only one is honored
任何關於正確語法的想法都會受到歡迎。謝謝。
工作就像一個魅力。謝謝! – bitsoflogic 2011-01-26 20:47:27