How to add/update individual result to each test step in testcase of VSTS/TFS programatically
问题 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 回答1: The simple way is using client API: Simple sample: int testpointid = 176; var u = new Uri("https://[account].visualstudio.com"); VssCredentials c = new VssCredentials(new Microsoft.VisualStudio.Services.Common.VssBasicCredential(string.Empty, "[pat]")); TfsTeamProjectCollection _tfs = new