I'm able to update test result to testcase in VSTS through program. Test Case Result Updation
Now, i want to update the result of each test step in test case. Couldn't find any related info. Please help
I'm able to update test result to testcase in VSTS through program. Test Case Result Updation
Now, i want to update the result of each test step in test case. Couldn't find any related info. Please help
The simple way is using client API:
Simple sample:
Regarding REST api, the necessary information is stored in actionResults of iterationDetails (TestCaseResult.IterationDetails), you can try specify IterationDetails to TestCaseResult and update test result.
You can check the details of a test result by using Get a Test Result with DetailInclude (detailsToInclude=Iterations)