Skip to content

Commit

Permalink
Delete some AsyncFibers.
Browse files Browse the repository at this point in the history
  • Loading branch information
tosh-coding committed May 19, 2024
1 parent b4d9f68 commit dbd6f11
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 204 deletions.
77 changes: 0 additions & 77 deletions src/AsyncFiberWorks/Fibers/LoopRunningAsyncFiber.cs

This file was deleted.

111 changes: 0 additions & 111 deletions src/AsyncFiberWorks/Fibers/SemaphoreLoopAsyncFiber.cs

This file was deleted.

16 changes: 0 additions & 16 deletions src/AsyncFiberWorksTests/AsyncFiberTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,6 @@ public async Task ChainAsyncFiberTest()
await AsyncFiberTest(fiber);
}

[Test]
public async Task LoopRunningAsyncFiberTest()
{
var fiber = new LoopRunningAsyncFiber();
await AsyncFiberTest(fiber);
fiber.Dispose();
}

[Test]
public async Task SemaphoreLoopAsyncFiberTest()
{
var fiber = new SemaphoreLoopAsyncFiber();
await AsyncFiberTest(fiber);
fiber.Dispose();
}

async Task AsyncFiberTest(IAsyncFiber fiber)
{
int counter = 0;
Expand Down

0 comments on commit dbd6f11

Please sign in to comment.