Skip to content

Commit

Permalink
refactor: place service bus test with default MSSQL before the custom
Browse files Browse the repository at this point in the history
  • Loading branch information
lgcmotta committed Jan 20, 2025
1 parent d78b741 commit 9611f83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/Testcontainers.ServiceBus.Tests/ServiceBusContainerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ await sender.SendMessageAsync(message)
}
}

[UsedImplicitly]
public sealed class ServiceBusContainerWithDefaultMsSqlTest() : ServiceBusContainerTest(new ServiceBusBuilder()
.WithAcceptLicenseAgreement(true)
.Build());

[UsedImplicitly]
public sealed class ServiceBusContainerWithCustomMsSqlTest() : ServiceBusContainerTest(new ServiceBusBuilder()
.WithNetwork(Network)
Expand All @@ -66,9 +71,4 @@ public sealed class ServiceBusContainerWithCustomMsSqlTest() : ServiceBusContain
.Build())
{
private static readonly INetwork Network = new NetworkBuilder().Build();
}

[UsedImplicitly]
public sealed class ServiceBusContainerWithDefaultMsSqlTest() : ServiceBusContainerTest(new ServiceBusBuilder()
.WithAcceptLicenseAgreement(true)
.Build());
}

0 comments on commit 9611f83

Please sign in to comment.