fixes the tests
All checks were successful
Dotnet build and test / build (pull_request) Successful in 7m35s

This commit is contained in:
Paul Schneider 2026-08-28 22:41:05 +01:00
commit e689dbfe35
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
11 changed files with 79 additions and 55 deletions

View file

@ -0,0 +1,13 @@
public interface IBackendFixture
{
/// <summary>
/// The addresses the fixture bound to.
/// </summary>
IReadOnlyList<string> Addresses { get; }
/// <summary>
/// The service provider for the fixture host.
/// </summary>
IServiceProvider Services { get; }
}