使用 Stripes 在控制器测试中设置请求主体

发布于 2024-10-08 00:59:15 字数 75 浏览 1 评论 0原文

我正在创建一个 ActionBean,它接受包含 XML 消息的请求。有没有办法让我使用 Stripes 中包含的模拟框架来模拟此操作?

I'm creating an ActionBean that takes a request that contains an XML message. Is there a way for me to simulate this operation using the mocking framework included in Stripes?

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

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

发布评论

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

评论(2

同展鸳鸯锦 2024-10-15 00:59:15

我刚刚意识到我可能可以从自定义 ActionBeanContext 方法模拟它,而实际的应用程序上下文实现将直接访问请求对象。

I just realized I could probably just mock it from a custom ActionBeanContext method while the actual application context implementation will access the request object directly.

不离久伴 2024-10-15 00:59:15

虽然 Stripes 模拟框架做得很好,但我经常发现对操作 bean 进行单元测试会更干净,就像它只是一个 POJO 一样。对于更复杂的测试,我使用 Mockito (或 EasyMock)。

While the Stripes mock framework does a good job, I often find it cleaner to just unit test the action bean as if it were just a POJO. For more complex test I use Mockito (or EasyMock).

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