refactor(DocumentStatusServiceTests): Service-Verzeichnis verschieben.

This commit is contained in:
Developer 02
2025-03-28 13:29:09 +01:00
parent cc6b4e63a9
commit 8824bfef00
3 changed files with 7 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
using Microsoft.Extensions.Hosting;
namespace EnvelopeGenerator.Tests.Application.Services;
[TestFixture]
public class DocumentStatusServiceTests
{
private IHost _host;
[SetUp]
public void SetUp()
{
_host = Mock.CreateHost();
}
[TearDown]
public void TearDown()
{
_host.StopAsync();
_host.Dispose();
}
}