在放心学习的同时,我正在尝试所有方法。到目前为止,我看不到.body()和.content()之间有什么区别。
有人可以帮忙吗?
API响应:
<root>
<fname>kamal</fname>
<lname>girdher</lname>
</root>
示例1:
given().get("http://localhost:3000/get_200_OK_SingleNode_Response").then().root("%s").body(withArgs("lname"),new ResponseAwareMatcher<Response>() { public Matcher<?> matcher(Response response) {return equalTo("girdher");}});
示例2:
given().get("http://localhost:3000/get_200_OK_SingleNode_Response").then().root("%s").content(withArgs("lname"),new ResponseAwareMatcher<Response>() { public Matcher<?> matcher(Response response) {return equalTo("girdher");}});