Visual Studio 内置的单元测试工具?
我听说VS2010中有内置的C#单元测试工具。我正在使用.Net 4.0 + C#。有没有为初学者推荐此类内置工具的教程?与 NUnit 相比,该工具的优缺点是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我听说VS2010中有内置的C#单元测试工具。我正在使用.Net 4.0 + C#。有没有为初学者推荐此类内置工具的教程?与 NUnit 相比,该工具的优缺点是什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这里是比较 MsTest 和 NUnit 的链接: http://it-tutorials.us/software/2320.aspx
在功能方面,两者都提供类似的功能,特别是对于初学者。我认为这两种工具最大的区别在于,一种是免费的,一种不是。 MsTest 是一个商业工具,通常并不包含在所有版本的 Visual Studio 中。另一方面,NUnit 是免费的,可以与任何 IDE 一起使用。另一件需要考虑的事情是,几乎所有构建服务器都具有 NUnit 集成,不仅可以运行 NUnit 测试,还可以处理生成的 XML 报告。
Here a links comparing MsTest and NUnit: http://weblogs.asp.net/rosherove/archive/2010/03/05/nunit-vs-mstest-nunit-wins-for-unit-testing.aspx
http://it-tutorials.us/software/2320.aspx
In terms of functionality, both provide comparable features, especially for a beginner. I think the biggest difference between the two tools is that one is free and one is not. MsTest is a commercial tool and is not usually included with all versions of Visual Studio. On the other hand, NUnit is free and can be used with any IDE. Another thing to consider is that almost all build servers have NUnit integration to not only run NUnit tests, but also process the generated XML reports.