Disposing the test fixtures
All checks were successful
Dotnet build and test / build (push) Successful in 6m49s

This commit is contained in:
Paul Schneider 2026-08-29 04:00:10 +01:00
commit 243c0f2780
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
5 changed files with 26 additions and 28 deletions

View file

@ -1,5 +1,4 @@
public interface IBackendFixture
public interface IBackendFixture : IDisposable
{
/// <summary>
/// The addresses the fixture bound to.
@ -10,4 +9,5 @@ public interface IBackendFixture
/// The service provider for the fixture host.
/// </summary>
IServiceProvider Services { get; }
}