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