junit 更新Azure测试计划中的测试用例结果状态

r3i60tvu  于 2023-01-26  发布在  其他
关注(0)|答案(2)|浏览(125)

我想更新Azure测试计划中的测试用例结果状态。我该怎么做?我只找到了如何获取有关测试计划的信息,但没有更新每个测试用例。

ngynwnxp

ngynwnxp1#

我希望更新Azure测试计划中的测试用例结果状态。如何执行此操作?
当您手动更新Azure测试计划中的测试用例结果状态时,您可以转到测试运行并选择更多选项:

如果您想使用REST API更新测试用例结果状态,您可以尝试使用以下REST API Results - Update

PATCH https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/results?api-version=6.0

申请正文:

[
  {
    "id": 100000,
    "state": "Completed",
    "comment": "Website theme is looking good",
    "associatedBugs": [
      {
        "id": 30
      }
    ]
  },
  {
    "id": 100001,
    "state": "Completed",
    "comment": "Website links are failing because of incorrect container id",
    "failureType": "Known Issue"
  }
]
4jb9z9bj

4jb9z9bj2#

使用上述结果API,由于无法使用 Postman 中的承载令牌和签名信息进行更新,是否需要OAuth-2认证。

相关问题