用于测试使用 NUnit 执行某些数据库事务的 Web 服务的 Web 方法的单元测试
如何使用 NUnit 编写单元测试来测试 Web 服务的 Web 方法?
此应用程序中的 Web 方法将添加、更新和删除数据库中的记录。 单元测试将测试Web方法是否已将记录插入数据库中,Web方法调用数据访问层中的方法来执行此操作。
How do I write unit tests to test the Web methods of a Web service using NUnit?
The web methods in this application will add,update and delete a record in the database.
The unit test will test a web method whether a record has been inserted in the database, the webmethod calls a method in data access layer to perform this action.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为通过单元测试来测试 Web 服务的最终结果是不合适的。 另外,您尝试做的事情称为“集成测试”,而不是单元测试。
然而,您可以做的是:
您可能还想看看我的问题之前提出过:如何对持久性进行单元测试?为您提供更多见解。
但是,如果您确实坚持能够做到这一点,则可以使用 MbUnit 创建此类单元测试,它具有
回滚
属性。MbUnit 与 NUnit 完全兼容,因此您仍然可以使用已经用 NUnit 编写的测试。
I do not think it's appropriate to be testing the end result of your web service with a unit test. Also, what you are trying to do is called an "integration test", and not a unit test.
What you can do, however, is to:
You might also want to look at a question I raised before: How do I unit test persistence? to provide you more insight.
If you really are adamant to be able to do this however, it is possible to create such unit tests using MbUnit, which has the
Rollback
attribute.MbUnit is totally compatible with NUnit, so you could still use tests you've already written with NUnit.