refactor(TestBase): add ConfigureServices-callback method to be able to add custom services to testes

This commit is contained in:
2025-09-15 11:00:00 +02:00
parent cb0c361cdb
commit 7fbf0ebbfc
4 changed files with 19 additions and 9 deletions

View File

@@ -4,12 +4,17 @@ using EnvelopeGenerator.Application.Histories.Commands;
using EnvelopeGenerator.Application.Histories.Queries;
using EnvelopeGenerator.Domain.Constants;
using EnvelopeGenerator.Domain.Entities;
using Microsoft.Extensions.DependencyInjection;
namespace EnvelopeGenerator.Tests.Application;
[TestFixture]
public class HistoryTests : TestBase
{
protected override void ConfigureServices(IServiceCollection services)
{
}
[SetUp]
public override Task Setup()
{