.NET Framework 上的单元测试和 Web 测试?
我想知道.NET Framework 中的单元测试和 Web 测试是什么以及这些测试之间有什么区别? 它对 CSLA.NET 的实施有何影响? 请帮忙,谢谢!
I would like to know what a Unit test and Web Test is in the .NET Framework and What are the difference between these tests? and How does it affect with the implementation of the CSLA.NET? Please help, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜您指的是在 Visual Studio 下使用 MSTest,它们有两种模式 - 代码测试或通过 http 调用测试网站。
在 .NET 中进行开发时,开发人员可以从多个单元测试框架中进行选择,例如 MSTest - NUnit、MBUnit、XUnit 等。有关详细信息,请查看 这个问题。
术语“单元测试”指的是更广泛的领域 - 您可以在此处阅读相关内容。
单元测试是指程序员编写简单的小测试来验证他的代码是否确实有效,并且不会影响 CLSA.NET 的实现。
I guess you're referring to using MSTest under Visual Studio where they have two modes - testing of code or testing of web site via http calls.
When developing in .NET a developer can choose from several Unit Testing Frameworks such as MSTest - NUnit, MBUnit, XUnit etc. for more information have a look at this question.
The term Unit Testing refer to a broader field - you can read about it here.
Unit testing refers to the programmer writing simple small tests to verify his code actually work and as such does not effect the implementation of CLSA.NET.
您的意思是,.NET 有哪些单元测试框架? 我推荐你NUnit
Do you mean, what unit tesing frameworks are there for .NET ? I recommend you NUnit