yavsc/src/Yavsc.Tests.Shared/IBackendFixture.cs
Paul Schneider 243c0f2780
All checks were successful
Dotnet build and test / build (push) Successful in 6m49s
Disposing the test fixtures
2026-08-29 04:00:10 +01:00

13 lines
306 B
C#

public interface IBackendFixture : IDisposable
{
/// <summary>
/// The addresses the fixture bound to.
/// </summary>
IReadOnlyList<string> Addresses { get; }
/// <summary>
/// The service provider for the fixture host.
/// </summary>
IServiceProvider Services { get; }
}