测试范围
所有
 ./vendor/bin/phpunit
指定目录
./vendor/bin/phpunit tests/Feature/
./vendor/bin/phpunit tests/Unit/
# 或者
./vendor/bin/phpunit --testsuite=Unit
./vendor/bin/phpunit --testsuite=Feature
指定文件
 ./vendor/bin/phpunit  tests/Unit/ExampleTest.php
过滤方法
 ./vendor/bin/phpunit  --filter test_that_true_is_true
支持模糊搜索,如
./vendor/bin/phpunit --filter test_that