Open GoogleCodeExporter opened 9 years ago
As a quick fix, we could prevent the Root node from appearing in the test
results window. Then, all tests appear correctly.
Specifically, the condition to check if node is Root can be added in the
following foreach loop:
foreach (var tsr in testStepRuns)
{
if (!node.TestKind.Equals("Root"))
AddTestStepRun(node.TestKind, tsr, indentCount);
}
FYI, the above loop is located inside the implementation of the
UpdateTestResults(TestTreeNode node, int indentCount) method of the
Gallio.Icarus\TestResults\TestResultsController.cs file.
Original comment by spsofia...@gmail.com
on 16 Jan 2013 at 11:01
Original issue reported on code.google.com by
spsofia...@gmail.com
on 9 Jan 2013 at 12:40Attachments: