如何在Azure DevOps中删除多个测试用例

时间:2019-07-16 07:18:00

标签: powershell azure-devops azure-devops-rest-api

我想在Azure DevOps中一次性删除多个测试用例。目前,门户网站一次只能删除一个。

是否可以使用PowerShell脚本或REST API来实现这一目标?

1 个答案:

答案 0 :(得分:1)

您可以使用Test Cases - Delete Rest API

DELETE https://dev.azure.com/{organization}/{project}/_apis/test/testcases/{id}?api-version=5.0-preview.1

因此您可以循环测试用例的ID并将其删除。

简单的PowerShell脚本示例:

$url = https://dev.azure.com/testOrg/testProj/_apis/test/testcases/10?api-version=5.0-preview.1
Invoke-RestMethod -Uri $url -Method Delete -ContentType application/json