yavsc/src/Yavsc.Tests.Shared/IBackendFixture.cs
Paul Schneider e689dbfe35
All checks were successful
Dotnet build and test / build (pull_request) Successful in 7m35s
fixes the tests
2026-08-28 22:41:05 +01:00

13 lines
292 B
C#

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; }
}