我无法运行任何测试,也没有错误。
我已下载phpunit
并将其移至/usr/local/bin
。
我没有对我的新laravel装置进行任何配置更改。
cd
到我的laravel根目录。 phpunit --version
提供PHPUnit 4.0.12
在/Applications/MAMP/htdocs/survey-backend/app/tests/ExampleTest.php
处有一个laravel示例测试。
现在,仅使用phpunit
运行测试:
Configuration read from /Applications/MAMP/htdocs/survey-backend/phpunit.xml
为什么测试没有被执行?
答案 0 :(得分:1)
由于致命错误导致此失败,因为我在start.php
中包含了使用/public
时可用但在从phpunit
进行呼叫时丢失的类。我现在已将它们添加到composer.json
,一切正常。
答案 1 :(得分:0)
想要注意我也遇到了这个问题,最后我在向TestCase添加tearDown()
方法时使用了私有而非受保护类。