人们使用哪些工具/编程语言来支持 TDD?
我想了解人们使用哪些工具/编程语言来支持测试驱动开发?
非常感谢, J
I want to get an idea of What tools/programming languages people are using that supports Test Driven Development?
Many Thanks,
J
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,我使用 c#,带有 Visual Studio,它支持 asp.net mvc2、wpf 和 MS 领域中的几乎所有技术都可以调整为 TDD,并且我确信 java 领域中还有更多技术,例如请
查看此网站以获取更多信息
对于 Dot Net
对于 Java
Well, I use c#, with visual studio, and it supports, both asp.net mvc2, wpf and almost any technology in the MS domain can be adjusted to TDD, and I'm sure that there is much more in the java domain as well
look in this sites for more information
For Dot Net
For Java
我使用Java + JUnit + Eclipse。
Eclipse 有一个“快速修复”功能 (Ctrl+1),您可以使用它来创建必要的类/接口存根,以使您的测试代码快速编译和运行。
I use Java + JUnit + Eclipse.
Eclipse has a "quick fix" feature (Ctrl+1) that you can use to create necessary class/interface stubs to make your test code compile and run quickly.
在 .NET TDD 中现在非常容易。
Visual Studio 2010 本身支持 TDD,它有自己的内置测试框架。
此外,.NET 4.0 还有一个很酷的功能,称为“代码契约”,它提供了一种与语言无关的方式来表达 .NET 程序中的编码假设 http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx
第三方 .NET TDD 工具列表位于此处 http://www.exforsys.com/tutorials/testing/microsoft-.net-unit-testing -tools.html
In .NET TDD is pretty easy now.
Visual studio 2010 natively supports TDD, it has its own build in testing framework.
Also .NET 4.0 has cool feature called Code Contracts which provide a language-agnostic way to express coding assumptions in .NET programs http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx
The list of third party .NET TDD tools are here http://www.exforsys.com/tutorials/testing/microsoft-.net-unit-testing-tools.html