EnvelopeGenerator/EnvelopeGenerator.Tests/DocumentStatusServiceTests.cs
2025-03-28 11:27:35 +01:00

25 lines
415 B
C#

using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnvelopeGenerator.Tests;
[TestFixture]
public class DocumentStatusServiceTests
{
private readonly IServiceProvider _provider;
[SetUp]
public void SetUp()
{
}
[TearDown]
public void TearDown()
{
}
}