diff --git a/source/UnitTestLauncher/Program.cs b/source/UnitTestLauncher/Program.cs index ba2157d..8560c5c 100644 --- a/source/UnitTestLauncher/Program.cs +++ b/source/UnitTestLauncher/Program.cs @@ -75,13 +75,13 @@ private static bool RunTest( method.Invoke(null, null); totalTicks = DateTime.UtcNow.Ticks - dt; - Debug.WriteLine($"Test passed: {method.Name}, {totalTicks}"); + Console.WriteLine($"Test passed: {method.Name}, {totalTicks}"); } catch (Exception ex) { if (ex.GetType() == typeof(SkipTestException)) { - Debug.WriteLine($"Test skipped: {method.Name}, {ex.Message}"); + Console.WriteLine($"Test skipped: {method.Name}, {ex.Message}"); if (isSetupMethod) { // In case the Setup attribute test is skipped, we will skip @@ -91,7 +91,7 @@ private static bool RunTest( } else { - Debug.WriteLine($"Test failed: {method.Name}, {ex.Message}"); + Console.WriteLine($"Test failed: {method.Name}, {ex.Message}"); } }