欺骗 postMethod (java 中的 apache)?
我对此还很陌生,所以请不要让我失望。
我正在尝试模拟 Post 方法,以便我可以设置它返回的状态。例如,我想将 PostMethod 设置为 200。
这样做的原因是我试图模拟一台没有互联网连接的计算机,
提前致谢
Im fairly new to this so please dont slam me down.
I'm trying to mock a Postmethod so that I can set the status it returns. For instance I want to set my PostMethod to 200.
The reason for doing this is I am trying to mock a computer without an internet connection
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你使用什么模拟库?语法会有所不同。
例如,在 Mockito 中,您可以执行以下操作:
当然,您可以使用 Mockito 类的静态导入以避免额外的合格参考文献。
What mocking library are you using? The syntax will vary.
In Mockito, for example, you might do the following:
And of course you could use a static import of the Mockito class to avoid the extra qualified references.