symfony2 TDD 开发
谁能提供一个使用 TDD 表示法在 Symfony2 中进行开发的标准示例吗?或者分享有关 TDD Symfony2 开发的有趣材料的链接(官方文档除外:))?
PS 有人为 MVC 模式的控制器部分编写单元测试吗?
Can anyone please provide a standard example for developing in Symfony2 using the TDD notation? Or share links to interesting materials for TDD Symfony2 development (except the official documentation :))?
P.S. Is anybody writing unit tests for controller part of MVC pattern?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是为 silex 做的,它是一个基于 Symfony2 的微框架。据我了解,非常相似。我推荐它作为 Symfony2 世界的入门读本。
我还使用 TDD 来创建这个应用程序,所以我所做的是:
示例测试用例(在
tests/ExampleTestCase.php
中)如下所示:我的
bootstrap.php
:我的
web/index.php< /代码>:
I just did it for silex, which is a micro-framework based on Symfony2. From what I understand, it's very similar. I'd recommend it for a primer to the Symfony2-world.
I also used TDD to create this application, so what I did was:
An example testcase (in
tests/ExampleTestCase.php
) looks like this:my
bootstrap.php
:My
web/index.php
: