Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AwesomeAssertions" Version="9.2.1" />
<PackageReference Include="EasyNetQ" Version="8.0.0-beta96" />
<PackageReference Include="FluentAssertions" Version="8.2.0" />
<PackageReference Include="docker.dotnet" Version="3.125.15" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.8.1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
global using Xunit;
global using Xunit.Abstractions;
global using FluentAssertions;
global using AwesomeAssertions;
Original file line number Diff line number Diff line change
@@ -1,25 +1,17 @@
using EasyNetQ.Management.Client.Model;
using FluentAssertions.Extensions;
using System.Security.Cryptography;
using System.Text.Json;
using AwesomeAssertions.Extensions;

namespace EasyNetQ.Management.Client.IntegrationTests;

using JsonSerializer = System.Text.Json.JsonSerializer;
using JsonSerializer = JsonSerializer;

[Collection("RabbitMQ")]
public class ManagementClientTests
public class ManagementClientTests(RabbitMqFixture fixture, ITestOutputHelper output)
{
private readonly RabbitMqFixture fixture;
private readonly ITestOutputHelper output;
private static readonly Vhost Vhost = new(Name: "/");

public ManagementClientTests(RabbitMqFixture fixture, ITestOutputHelper output)
{
this.fixture = fixture;
this.output = output;
}

private const string TestExchange = "management_api_test_exchange";
private const string TestExchange2 = "management_api_test_exchange2";
private const string TestExchangeTestQueueWithPlusChar = "management_api_test_exchange+plus+test";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="AwesomeAssertions" Version="9.2.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="FluentAssertions" Version="8.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
Expand Down
2 changes: 1 addition & 1 deletion Source/EasyNetQ.Management.Client.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
global using Xunit;
global using FluentAssertions;
global using AwesomeAssertions;