Reputation: 35
We have a Coded UI solution in TFS and run tests from MS Test Manager. How can I post test results into Report Portal? I have just installed NUGet package from github
But it is unclear for me how to use it. Is there some documentation about using of Report Portal API?
Upvotes: 1
Views: 823
Reputation: 21
I believe there now there is something that can connect reportportal and mstest: https://github.com/reportportal/agent-net-vstest
Upvotes: 0
Reputation: 736
Unfortunately, ReportPortal have no MSTest agent yet. But it has reach API so you could try to implement agent by yourself. There are couple of other .NET-based clients (as example): NUunit, Specflow
Server-side API is quite powerful to implement integration with any testing engine. You can have a look at it by the following link (must be logged in): YOUR_RP_URL/ui/swagger-ui.html
Upvotes: 4