25 lines
415 B
C#
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()
|
|
{
|
|
}
|
|
}
|