Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 40ed270

Browse files
authored
Print the full test name when showing labels. (#19)
Printing just the test name is confusing, because there can be multiple tests with the same name.
1 parent b05141d commit 40ed270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/framework/GuiUnit/TestRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ private void ExploreTests()
394394
public void TestStarted(ITest test)
395395
{
396396
if (commandLineOptions.LabelTestsInOutput)
397-
writer.WriteLine("***** {0}", test.Name);
397+
writer.WriteLine("***** {0}", test.FullName);
398398
listener.TestStarted (test);
399399
}
400400

0 commit comments

Comments
 (0)