我正在尝试创建一个 java 发布请求以在测试轨道上创建一个测试运行,但是它似乎没有在我的代码中工作:
public class create_run {
public JSONObject AddTestRunTest() throws IOException, APIException {
JSONObject jsonobject = new JSONObject();
APIClient client = new APIClient("https://stdec.testrail.com/");
client.setUser("fea@sportdec.com");
client.setPassword("Fa1");
Map<String, Object> map = new HashMap<String, Object>();
map.put("suite_id", 829);
map.put("assignedto_id", 1);
map.put("name", "Regression Test");
map.put("include_all", true);
map.put({"17082","17085"});
client.sendPost("index.php?/api/v2/add_run/24", map);
return jsonobject;
}
}
测试轨文档在这里我正在寻找添加运行http://docs.gurock.com/testrail-api2/reference-runs 任何帮助这里如何使它实际工作,正在完成但没有任何事情发生。我是一名测试人员,但正在为 Java 的这一块苦苦挣扎