Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2020-06-22 17:03:02 +0300
committerGitHub <noreply@github.com>2020-06-22 17:03:02 +0300
commit40ed270ba75448ebadf3b995e73971cae4d47cba (patch)
treef46baa0e2c6a7b85b64a84b64917a2927a132ee2
parentb05141db875c695f0edb1d2bf67ae3f1fe1914c4 (diff)
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.
-rw-r--r--src/framework/GuiUnit/TestRunner.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/GuiUnit/TestRunner.cs b/src/framework/GuiUnit/TestRunner.cs
index 3950cf3..6f3f690 100644
--- a/src/framework/GuiUnit/TestRunner.cs
+++ b/src/framework/GuiUnit/TestRunner.cs
@@ -394,7 +394,7 @@ namespace GuiUnit
public void TestStarted(ITest test)
{
if (commandLineOptions.LabelTestsInOutput)
- writer.WriteLine("***** {0}", test.Name);
+ writer.WriteLine("***** {0}", test.FullName);
listener.TestStarted (test);
}