refacto + test fixes
Some checks failed
Dotnet build and test / build (pull_request) Failing after 5m11s

This commit is contained in:
Paul Schneider 2026-08-28 21:33:11 +01:00
commit 1c2e1760b0
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
8 changed files with 60 additions and 32 deletions

View file

@ -0,0 +1,15 @@
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; }
}