我刚安装了最后一个版本的phpunit,当我运行演示测试时:
bin/phpunit src/Acme/DemoBundle/Tests/
我遇到了这个问题:
1) Acme\DemoBundle\Tests\Controller\DemoControllerTest::testIndex
RuntimeException: Unable to guess the Kernel directory.
以及内核被引用的行
关于为什么这个DEMO TEST不起作用的任何想法?
答案 0 :(得分:41)
尝试从项目根目录运行bin/phpunit -c app/ src/Acme/DemoBundle/Tests/
。
有app/phpunit.xml.dist
个phpunit配置文件,设置Symfony需要的一些选项。