当我在Symfony2项目上运行phpunit时,测试总是在第一次运行时失败:
$ phpunit -c app src/Project/MyBundle/Tests/Controller/SomeTest.php
PHPUnit 3.7.19 by Sebastian Bergmann.
Configuration read from src/main/app/phpunit.xml
E
Time: 1 second, Memory: 24.25Mb
There was 1 error:
1) Project\MyBundle\Tests\Controller\RegistrationTest::testStdRegistration
PHPUnit_Framework_Exception: PHP Fatal error: Interface 'Swift_Events_SendListener' not found in src/main/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php on line 19
PHP Stack trace:
PHP 1. {main}() -:0
PHP 2. require_once() -:542
FAILURES!
Tests: 1, Assertions: 0, Errors: 1.
如果我重新开始测试,一切都顺利通过。没有错误。我认为这一切归结为文件缓存/ test / appTestDebugProjectContainer.php的存在 在第一次运行测试之前,此文件不存在。在此运行之后,它将在以下测试中创建并使用。我总是受到Symfony2确定的印象,所有相关文件都是在第一次测试运行之前创建的,但似乎并非如此。 那么我该如何解决这个问题呢?我应该在测试开始之前手动预热缓存,还是必须修改我的测试以等待创建缓存文件?
答案 0 :(得分:2)
在执行测试之前预热测试环境缓存,以避免此错误。
app/console cache:warmup --env=test