Skip to content

Commit 7c16f26

Browse files
committed
renames
1 parent 1840e8a commit 7c16f26

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

projects/Test/Integration/TestConsumerCancelNotify.cs renamed to projects/Test/Integration/TestAsyncConsumerCancelNotify.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838

3939
namespace Test.Integration
4040
{
41-
public class TestConsumerCancelNotify : IntegrationFixture
41+
public class TestAsyncConsumerCancelNotify : IntegrationFixture
4242
{
4343
private readonly TaskCompletionSource<bool> _tcs = new TaskCompletionSource<bool>(TaskCreationOptions.RunContinuationsAsynchronously);
4444
private string _consumerTag;
4545

46-
public TestConsumerCancelNotify(ITestOutputHelper output) : base(output)
46+
public TestAsyncConsumerCancelNotify(ITestOutputHelper output) : base(output)
4747
{
4848
}
4949

@@ -100,10 +100,10 @@ private async Task TestConsumerCancelAsync(string queue, bool eventMode)
100100

101101
private class CancelNotificationConsumer : AsyncEventingBasicConsumer
102102
{
103-
private readonly TestConsumerCancelNotify _testClass;
103+
private readonly TestAsyncConsumerCancelNotify _testClass;
104104
private readonly bool _eventMode;
105105

106-
public CancelNotificationConsumer(IChannel channel, TestConsumerCancelNotify tc, bool eventMode)
106+
public CancelNotificationConsumer(IChannel channel, TestAsyncConsumerCancelNotify tc, bool eventMode)
107107
: base(channel)
108108
{
109109
_testClass = tc;

projects/Test/Integration/TestConsumerCount.cs renamed to projects/Test/Integration/TestAsyncConsumerCount.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737

3838
namespace Test.Integration
3939
{
40-
public class TestConsumerCount : IntegrationFixture
40+
public class TestAsyncConsumerCount : IntegrationFixture
4141
{
42-
public TestConsumerCount(ITestOutputHelper output) : base(output)
42+
public TestAsyncConsumerCount(ITestOutputHelper output) : base(output)
4343
{
4444
}
4545

projects/Test/Integration/TestConsumerOperationDispatch.cs renamed to projects/Test/Integration/TestAsyncConsumerOperationDispatch.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
namespace Test.Integration
4242
{
43-
public class TestConsumerOperationDispatch : IntegrationFixture
43+
public class TestAsyncConsumerOperationDispatch : IntegrationFixture
4444
{
4545
// number of channels (and consumers)
4646
private const int Y = 100;
@@ -55,7 +55,7 @@ public class TestConsumerOperationDispatch : IntegrationFixture
5555
private readonly List<CollectingConsumer> _consumers = new List<CollectingConsumer>();
5656

5757

58-
public TestConsumerOperationDispatch(ITestOutputHelper output) : base(output)
58+
public TestAsyncConsumerOperationDispatch(ITestOutputHelper output) : base(output)
5959
{
6060
}
6161

0 commit comments

Comments
 (0)