Skip to content

Commit 2b4f6d9

Browse files
committed
TEST: Add test that never completes
1 parent b7b56e8 commit 2b4f6d9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)