You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Send message as warning in case of error stream, informational otherwise (#1037) (#1038)
* Send message as warning in case of error stream, informational otherwise (#1037)
* Moved TestOutput unit test to separate region (#1037)
Co-authored-by: Martin Harwig <[email protected]>
@@ -166,6 +167,25 @@ public void TestFinished_CallsRecordResultCorrectly()
166
167
167
168
#endregion
168
169
170
+
#region TestOutput Tests
171
+
172
+
[TestCase(NUnitTestEventTestOutput.Streams.Error,TestMessageLevel.Warning,TestName="TestOutput with 'Error' stream is send as message level Warning")]
173
+
[TestCase(NUnitTestEventTestOutput.Streams.Progress,TestMessageLevel.Informational,TestName="TestOutput with 'Progress' stream is send as message level Informational")]
174
+
[TestCase(NUnitTestEventTestOutput.Streams.NoIdea,TestMessageLevel.Informational,TestName="TestOutput with 'NoIdea' stream is send as message level Informational")]
0 commit comments