25 lines
427 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.Application;
[TestFixture]
public class DocumentStatusServiceTests
{
private readonly IServiceProvider _provider;
[SetUp]
public void SetUp()
{
}
[TearDown]
public void TearDown()
{
}
}