// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using Microsoft.EntityFrameworkCore; using Squidex.Infrastructure; #pragma warning disable MA0048 // File name must match type name namespace Squidex.EntityFramework.TestHelpers; public interface ISqlFixture where TContext : DbContext { IDbContextFactory DbContextFactory { get; } } public interface ISqlContentFixture : ISqlFixture where TContext : DbContext where TContentContext : ContentDbContext { IDbContextNamedFactory DbContextNamedFactory { get; } }