最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

azure devops rest api - AzureDevops API - create test points - Stack Overflow

programmeradmin3浏览0评论

is there a way to create Test Point in Azure Devops? I can find in documentation how to update existing test point - assign tester, etc... but my use case is to create a particular number of test points for given test case and assign testers

is there a way to create Test Point in Azure Devops? I can find in documentation how to update existing test point - assign tester, etc... but my use case is to create a particular number of test points for given test case and assign testers

Share Improve this question asked Mar 17 at 11:21 KubaKuba 711 gold badge2 silver badges9 bronze badges 1
  • Have you tried the REST API mentioned in my answer below? Do they work for your? @Kuba – Bright Ran-MSFT Commented Mar 21 at 3:13
Add a comment  | 

1 Answer 1

Reset to default 0

A test point is an instance of test case assigned with a specific test configuration. If you assign multiple configurations to a test case, it will have one test point for each of the assigned configurations. So, to set up a new test point for a test case, you just need to assign a new configuration to the test case.

For your case, you can do with the following Azure DevOps REST API:

  1. Call the API "Suite Test Case - Update" to update the specified test cases with the specified existing configurations. The response of this API can return the test points associated with the test cases.

  2. You also can call the API "Test Point - Get Points List" to list test points associated with a specified test case.

  3. Call the API "Test Point - Update" to update the specified test points. You can update the result/outcome and tester of each test point.

发布评论

评论列表(0)

  1. 暂无评论