You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described in this section of TestAdapter how-to it is possible to show several results per one spec. Example is how xunit shows results for [Theory] marked tests.
Might be a good idea to display each node's result in such way, and global spec result in parent node.
The text was updated successfully, but these errors were encountered:
After merging of #18 each node's spec is reported as separate test result. So need to group that results into single TestCase to make them children on one node in test explorer (and maybe they will be grouped in dotnet test output as well).
We've lost the "tree" output that we used to have - in the past it was our customer TrxExporter that handled this. The VSTestAdapter output should handle it now, so we likely need to change how we're structuring results in order to solve both problems.
As described in this section of TestAdapter how-to it is possible to show several results per one spec. Example is how xunit shows results for
[Theory]
marked tests.Might be a good idea to display each node's result in such way, and global spec result in parent node.
The text was updated successfully, but these errors were encountered: