如何使用集会休息api和java

时间:2018-03-28 11:51:18

标签: java rest api rally

如何使用拉力赛休息api java 将更多测试用例附加到测试集。

我想为该测试集添加更多测试用例。截至目前,我只能在测试集中添加测试用例集合。

如果我必须在测试集中添加更多测试用例,该怎么办?

1 个答案:

答案 0 :(得分:2)

如果您要将测试用例添加到测试集到数组,则可以使用CollectionUpdateRequestupdateCollection方法更新测试集。

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