Symfony 3 功能测试错误(KERNEL_DIR 或 WebTestCase)
Posted
技术标签:
【中文标题】Symfony 3 功能测试错误(KERNEL_DIR 或 WebTestCase)【英文标题】:Symfony 3 functional test error (KERNEL_DIR or WebTestCase) 【发布时间】:2017-07-11 00:41:02 【问题描述】:我需要这方面的帮助,文档没有帮助。
我有app/AppKernel.php
,我没有使用自定义内核,但是功能测试没有运行。
phpunit.xml.dist:
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="app/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
<server name="KERNEL_DIR" value="app" />
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
<exclude>
<directory>src/*Bundle/Resources</directory>
<directory>src/*/*Bundle/Resources</directory>
<directory>src/*/Bundle/*Bundle/Resources</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
错误:
/usr/bin/php /home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/vendor/phpunit/phpunit/phpunit --no-configuration /home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/tests --teamcity
Testing started at 21:35 ...
PHPUnit 6.1.0 by Sebastian Bergmann and contributors.
Either set KERNEL_DIR in your phpunit.xml according to https://symfony.com/doc/current/book/testing.html#your-first-functional-test or override the WebTestCase::createKernel() method.
/home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php:126
/home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php:165
/home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php:146
/home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php:33
/home/jorgee/Desktop/Proyectos/Nano/proyecto-nano/tests/AppBundle/Controller/Security/LoginControllerAcceptanceTest.php:19
【问题讨论】:
你的 phpunit.xml.dist 文件在哪里? 【参考方案1】:您使用--no-configuration
运行 phpunit,这会阻止 phpunit 加载配置文件。
要么加载文件,要么将KERNEL_DIR
设置为环境变量。
【讨论】:
谢谢,我正在通过 PHPStorm 右键单击 -> 运行来运行它。我会检查我是否可以配置它以上是关于Symfony 3 功能测试错误(KERNEL_DIR 或 WebTestCase)的主要内容,如果未能解决你的问题,请参考以下文章
带有 UserInterface 和 getToken 的 Symfony 错误
Symfony 简单 PHPUnit 退出代码 1,未显示错误
Laravel - 测试。如何修复错误 Symfony\Component\HttpKernel\Exception\NotFoundHttpException