Skip to content

Commit

Permalink
Minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
romandykyi committed Feb 8, 2024
1 parent 86774be commit 9c654fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions AdvancedTodoList.IntegrationTests/IntegrationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ namespace AdvancedTodoList.IntegrationTests;
/// <summary>
/// Base class for integration tests.
/// </summary>
public class IntegrationTest
public abstract class IntegrationTest
{
private static bool s_migrated = false;
private static MsSqlContainer s_testDbContainer;
protected static TestingWebApplicationFactory WebApplicationFactory { get; private set; }
protected static IServiceScopeFactory ScopeFactory { get; private set; }
protected static IServiceScope ServiceScope { get; private set; }
protected static ApplicationDbContext DbContext { get; private set; }
protected IServiceScopeFactory ScopeFactory { get; private set; }
protected IServiceScope ServiceScope { get; private set; }
protected ApplicationDbContext DbContext { get; private set; }

[SetUp]
public async Task SetUpServices()
Expand Down

0 comments on commit 9c654fd

Please sign in to comment.