using AutobusApi.Infrastructure.Identity; using AutoubsApi.Infrastructure.Data; using Microsoft.AspNetCore.Mvc.Testing; namespace AutobusApi.IntegrationTests.Tests; public class TestsBase : IClassFixture> { protected readonly HttpClient _httpClient; private readonly CustomWebApplicationFactory _factory; public TestsBase(CustomWebApplicationFactory factory) { _factory = factory; _httpClient = factory.CreateClient(new WebApplicationFactoryClientOptions { AllowAutoRedirect = false }); var scope = _factory.Services.CreateScope(); var dbContext = scope.ServiceProvider.GetRequiredService(); var identityDbContext = scope.ServiceProvider.GetRequiredService(); dbContext.Database.EnsureDeleted(); identityDbContext.Database.EnsureDeleted(); AutobusApi.IntegrationTests.DbInitializer.Initialize(dbContext, identityDbContext); } }