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