014.使用Http Client测试接口
Http Client结果验证:
#> {% #client.test("test-hello", function() {//test-hello是测试名字 # client.log("测试/hello接口"); # client.log(response.body); # client.log(JSON.stringify(response.body)); // 虽然idea没有提示JSON,但是可以用 # client.assert(response.status === 200, "返回码不是200"); # client.assert(response.body === "Hello World!", "结果验证失败");//body.name或者body.id #}); #%} ###