Symfony2 演示测试问题

问题描述 投票:0回答:1

我刚刚安装了最新版本的 phpunit,当我运行演示测试时:

bin/phpunit src/Acme/DemoBundle/Tests/

我遇到这个问题:

1) Acme\DemoBundle\Tests\Controller\DemoControllerTest::testIndex
RuntimeException: Unable to guess the Kernel directory.

以及引用内核的行

关于为什么这个演示测试不起作用有什么想法吗?

symfony testing phpunit symfony2
1个回答
45
投票

尝试从项目根目录运行

bin/phpunit -c app/ src/Acme/DemoBundle/Tests/

app/phpunit.xml.dist
phpunit配置文件,设置Symfony需要的一些选项。

© www.soinside.com 2019 - 2024. All rights reserved.