We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2da48 commit 8ea0267Copy full SHA for 8ea0267
tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs
@@ -51,11 +51,11 @@ public abstract class UmbracoIntegrationTestBase
51
52
[SetUp]
53
public void SetUp_Logging() =>
54
- TestContext.Progress.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}");
+ TestContext.Out.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}");
55
56
[TearDown]
57
public void TearDown_Logging() =>
58
- TestContext.Progress.Write($" {TestContext.CurrentContext.Result.Outcome.Status}");
+ TestContext.Out.Write($" {TestContext.CurrentContext.Result.Outcome.Status}");
59
60
[OneTimeTearDown]
61
public void FixtureTearDown()
0 commit comments