如何使用拉力赛休息api 和 java 将更多测试用例附加到测试集。
我想为该测试集添加更多测试用例。截至目前,我只能在测试集中添加测试用例集合。
如果我必须在测试集中添加更多测试用例,该怎么办?
答案 0 :(得分:2)
如果您要将测试用例添加到测试集到数组,则可以使用CollectionUpdateRequest
和updateCollection
方法更新测试集。
JsonArray testCaseRefs = new JsonArray();
JsonObject testCaseRef = new JsonObject();
testCaseRef.addProperty("_ref", "/testcase/12345");
testCaseRefs.add(testCaseRef);
CollectionUpdateRequest testsetTestCasesCollectionAddRequest = new CollectionUpdateRequest("/testset/23456/testcases", testCaseRefs, true);
CollectionUpdateResponse testsetTestCasesCollectionAddResponse = restApi.updateCollection(testsetTestCasesCollectionAddRequest);
更多信息,请访问https://github.com/RallyTools/RallyRestToolkitForJava/wiki/User-Guide#update-collection