Keep getting #39;You have requested a non-existent service quot;test.clientquot;#39; in Symfony2 Beta3(不断收到“您请求了一个不存在的服务test.client“在 Symfony2 Beta3 中)
问题描述
我正在尝试设置单元测试,但每当我运行phpunit -c app"时,我都会收到此错误:
I'm trying to setup a unit test but whenever I run "phpunit -c app" I get this error:
SymfonyComponentDependencyInjectionExceptionServiceNotFoundException:您请求了一个不存在的服务test.client".
SymfonyComponentDependencyInjectionExceptionServiceNotFoundException: You have requested a non-existent service "test.client".
我的测试用例中的代码只是:
The code in my test case is just:
public function testNonAuthenticatedPathsIndex()
{
$client = $this->createClient();
}
如果我不调用 createClient,一切都会正常运行.我检查了 AppKernel.php 以确保 FrameworkBundle(我相信这是定义此服务的位置)肯定仍然存在并且确实存在.
If I don't make the call to createClient everything runs correctly. I've checked AppKernel.php to make sure the FrameworkBundle (I believe that's where this service is defined) is definitely still in there and it is.
我对可能导致这种情况的原因有点困惑,因为我以前曾设法做这种事情.
I'm a bit confused as to what might be causing this as I've managed to do this kind of thing before.
感谢您的帮助.
推荐答案
你是否在config_test.yml中启用了framework.test
选项?
Have you enabled the framework.test
option in config_test.yml?
framework:
test: ~
这篇关于不断收到“您请求了一个不存在的服务"test.client“"在 Symfony2 Beta3 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:不断收到“您请求了一个不存在的服务"test.client“"在 Symfony2 Beta3 中
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01