Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我编写的 WCF 服务编写单元测试。问题是当我运行单元测试时,它会抛出错误,说没有端点监听。我需要编译我的 WCF 服务,然后运行单元测试。
是否有任何其他方式可以运行单元测试并托管 WCF 服务,然后再开始测试。
提前致谢
针对实际 WCF 服务运行测试不是单元测试,而是集成测试;如果您想这样做,您可以将其作为自动化构建过程的一部分,该过程部署服务然后运行您的测试。
要对您的服务进行单元测试,您应该忽略 WCF 方面并直接调用服务类,就好像它是任何其他类一样。