yavsc/src/Yavsc.Blogs.Tests/Fixtures/IBackendFixture.cs

15 lines
318 B
C#
Raw Normal View History

2026-08-28 21:33:11 +01:00
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; }
}