15 lines
318 B
C#
15 lines
318 B
C#
|
|
|
||
|
|
using Yavsc.Blogs.Tests;
|
||
|
|
|
||
|
|
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; }
|
||
|
|
}
|