I am making a program in ASP .NET Core and I am trying to get the Test Runs for specific build in specific Build Definition. So far I have created some some methods which can get the build definition and all night builds for that specific build. Now I would like to get all test results from the mentioned night build
The Idea is to get the list of all tests and do some statistics with them. I am using the following libraries
using Microsoft.TeamFoundation.Build.WebApi;
using Microsoft.TeamFoundation.Core.WebApi;
using Microsoft.TeamFoundation.TestManagement.WebApi;
I am not using any RestAPI queries for now. Only these pre-designed methods from mentioned libs (I know that they are using Rest service in the background) and I hope that I can somehow manage to do it with these methods. Is there a way to do so?
Thanks for possible solutions