2023-12-29 11:46:17 +05:00
|
|
|
using AsbCloudDb.Model;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests;
|
|
|
|
|
|
|
|
public abstract class BaseIntegrationTest : IClassFixture<WebAppFactoryFixture>
|
|
|
|
{
|
2024-01-25 15:56:34 +05:00
|
|
|
protected readonly IServiceScope scope;
|
2024-01-23 16:19:30 +05:00
|
|
|
|
2023-12-29 11:46:17 +05:00
|
|
|
protected readonly IAsbCloudDbContext dbContext;
|
|
|
|
|
2024-01-23 16:19:30 +05:00
|
|
|
protected BaseIntegrationTest(WebAppFactoryFixture factory)
|
2023-12-29 11:46:17 +05:00
|
|
|
{
|
|
|
|
scope = factory.Services.CreateScope();
|
|
|
|
dbContext = scope.ServiceProvider.GetRequiredService<IAsbCloudDbContext>();
|
2024-01-23 16:19:30 +05:00
|
|
|
}
|
2023-12-29 11:46:17 +05:00
|
|
|
}
|