All checks were successful
Dotnet build and test / build (push) Successful in 6m49s
13 lines
306 B
C#
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; }
|
|
|
|
}
|