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 b7b56e8 commit 2b4f6d9Copy full SHA for 2b4f6d9
src/Logging/test/DynamicConsole.Test/HangTest.cs
@@ -0,0 +1,20 @@
1
+// Licensed to the .NET Foundation under one or more agreements.
2
+// The .NET Foundation licenses this file to you under the Apache 2.0 License.
3
+// See the LICENSE file in the project root for more information.
4
+
5
+#pragma warning disable
6
+// Resharper disable All
7
8
+namespace Steeltoe.Logging.DynamicConsole.Test;
9
10
+public sealed class HangTest
11
+{
12
+ [Fact]
13
+ public void RunForever()
14
+ {
15
+ while (true)
16
17
+ ;
18
+ }
19
20
+}
0 commit comments