如何在现有的 ASP.NET MVC 项目中添加单元测试功能?
如何为现有的 ASP.NET MVC 项目添加单元测试功能(在 Visual Studio 2010 Ultimate Edition 中)? 我添加了测试项目来实现 TDD,但它看起来完全不同。 提前致谢。
How to add the unit testing functionality (in Visual Studio 2010 Ultimate Edition) for an already existing ASP.NET MVC project?
I have added Test Project to achieve TDD but it looks entirely different.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的方法是使用单元测试项目创建空项目,然后将现有项目添加到当前解决方案中。修复命名空间、类型名称(如果需要),仅此而已。
但您需要了解,您只有几个示例测试,并且需要编写自己的测试来覆盖所有代码。
I think the easiest way is to create empty project with unit test project and then add existing project to the current solution. Fix namespaces, type names (if needed) and that's it.
But you need to understand that you will have only couple sample tests and you will need to write your own to cover all code.