gpt4 book ai didi

java - Spring启动测试@WebMethod

转载 作者:行者123 更新时间:2023-11-30 08:14:35 24 4
gpt4 key购买 nike

我有 SOAP 服务。像这样:

@WebMethod
public SomeResourceResponse getSomeThings(
@XmlElement(required = true)
@WebParam(name = "id") Long id) {
SomeResourceResponse resource = new SomeResourceResponse();
...
return resource;
}

如何对其进行单元测试?我该如何 mock 它?我不明白。所有现有的 Spring 教程(例如这个 - https://spring.io/guides/gs/producing-web-service/ )都建议直接使用 SOAP UI。

最佳答案

只需调用该方法即可。

@Test
public void testGetSomeThings() {
...
SomeResourceResponse result = someResourceResponse.getSomeThings(1);
...
assertEquals(xxx, result);
}

关于java - Spring启动测试@WebMethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29841383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com