如何在Rally java api中从testcase查询teststep

时间:2017-10-24 20:21:39

标签: java rally

我可以获取包含测试用例名称和其他详细信息的测试用例结果。但我无法获得测试用例的测试步骤。我的查询包含steps属性,其中teststep url与之关联。有没有办法可以获取测试用例的testtep详细信息

  //create new QueryRequest
 QueryRequest tests = new QueryRequest("Test Case");

 tests.setFetch(new Fetch("FormattedID","Name","Owner","Test Folder","steps","LastRun"));

  // Query Rally
  QueryResponse queryResponse = restApi.query(tests);

1 个答案:

答案 0 :(得分:1)

是的,您只需要提出第二个请求,以便为每个相关测试用例的步骤进行补充。

你可以在这里查看这个例子,这是一个故事的缺陷:

https://github.com/RallyTools/RallyRestToolkitForJava/blob/master/src/main/resources/examples/com/rallydev/rest/CollectionQueryExample.java