Skip to content

Commit

Permalink
Added missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Sep 26, 2024
1 parent 1966672 commit 0518ca3
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using System;
using System;
using System.Threading.Tasks;
using Foundatio.Messaging;
using Foundatio.Tests.Messaging;
using Foundatio.Tests.Utility;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

Expand Down Expand Up @@ -64,10 +63,15 @@ public override Task CanSendDerivedMessageAsync()
return base.CanSendDerivedMessageAsync();
}

[Fact]
public override Task CanSendMappedMessageAsync()
{
return base.CanSendMappedMessageAsync();
}

[Fact]
public override Task CanSendDelayedMessageAsync()
{
Log.SetLogLevel<AzureServiceBusMessageBus>(LogLevel.Information);
return base.CanSendDelayedMessageAsync();
}

Expand Down Expand Up @@ -113,6 +117,12 @@ public override Task CanSubscribeToAllMessageTypesAsync()
return base.CanSubscribeToAllMessageTypesAsync();
}

[Fact]
public override Task CanSubscribeToRawMessagesAsync()
{
return base.CanSubscribeToRawMessagesAsync();
}

[Fact]
public override Task CanCancelSubscriptionAsync()
{
Expand Down

0 comments on commit 0518ca3

Please sign in to comment.