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 66bf798 commit 566fd78Copy full SHA for 566fd78
src/WouterVanRanst.Utils.Tests/ConcurrentConsumingTaskCollectionCoyoteTests.cs
@@ -13,7 +13,7 @@ public class TaskCompletionBufferCoyoteTests
13
/// Tests concurrent addition of tasks and completion signaling to ensure
14
/// all tasks are processed and no invalid operations occur.
15
/// </summary>
16
- [Test]
+ [Fact]
17
public static async Task TestConcurrentAddAndCompleteAdding()
18
{
19
var configuration = Configuration.Create().WithTestingIterations(100);
@@ -37,6 +37,8 @@ public static async Task TestConcurrentAddAndCompleteAdding()
37
}
38
});
39
40
+ await producer;
41
+
42
// Signal completion concurrently
43
var completer = Task.Run(() => buffer.CompleteAdding());
44
0 commit comments