In our CI build, we run our unit tests (as expected) & they show up in the build summary, great! How can we control the display name of the parent of the tests?
It appears to be grouping them by the assembly and there's no reference to which assembly in the parent name.
-- VSTest_TestResults_NNN_X
---- test 1
---- test 2
-- VSTest_TestResults_NNN_Y
---- test 1
---- test 2
I assume we would have to customize the above build definition task?

