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

1
  • Have you tried the REST API mentioned in my answer below? Do they work for your? @Kuba Commented Mar 21 at 3:13

1 Answer 1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.