针对调用 Web 服务的方法签名编写 JUnit 测试的最佳方法是什么?

发布于 2024-08-10 12:05:58 字数 200 浏览 5 评论 0原文

我想要测试的方法有一个局部变量,该变量引用从 Web 服务调用返回的对象。此 Web 服务根据特定用户在网页上的输入返回特定于该用户的信息。它就像一个问题/答案,表单文本字段中给出的答案必须与用户之前提供的答案相匹配,并且现在与他们的帐户绑定。根据他们是否得到正确答案,会发生某些事情。我应该将服务模拟为类上的一个字段,我可以将其设置为返回虚拟服务响应,还是有更好的方法来测试它?谢谢!

The method I want to test has a local variable that references an object returned from a Web service call. This Web service returns information specific to a particular user based upon input from that user on a Web page. It is like a question/answer, where the answer given in a form text field must match the answer provided by the user at an earlier date, and is now tied from their account. There are certain things that happen based upon whether or not they got the answer correct. Should I mock out the service as a field on the class instead, where I can set it to return a dummy service response, or is there a better way to test it? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

驱逐舰岛风号 2024-08-17 12:05:58

我认为你的直觉很好,可以模拟这项服务。

I think your intuition is good on this one, to mock out the service.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文