// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using Microsoft.EntityFrameworkCore; using Squidex.EntityFramework.TestHelpers; using Squidex.Infrastructure.States; using Squidex.Shared; namespace Squidex.EntityFramework.Infrastructure.States; public abstract class EFSnapshotStoreTests(ISqlFixture fixture) : SnapshotStoreTests where TContext : DbContext { protected override Task> CreateSutAsync() { var sut = new EFSnapshotStore>(fixture.DbContextFactory); return Task.FromResult>(sut); } }