refactor(DocumentStatusServiceTests): Service-Verzeichnis verschieben.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user