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
1 Answer
Reset to default 0A 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:
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.
You also can call the API "Test Point - Get Points List" to list test points associated with a specified test case.
Call the API "Test Point - Update" to update the specified test points. You can update the
result/outcome
andtester
of each test point.