Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
1.0 KiB

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using Microsoft.Extensions.Logging;
using Squidex.Domain.Apps.Entities.Assets.Repositories;
using Squidex.Domain.Apps.Entities.MongoDb.Assets;
using Squidex.MongoDb.TestHelpers;
using Squidex.Shared;
namespace Squidex.MongoDb.Domain.Assets;
[Trait("Category", "TestContainer")]
[Collection(MongoFixtureCollection.Name)]
public class MongoAssetRepositoryTests(MongoFixture fixture) : AssetRepositoryTests
{
protected override async Task<IAssetRepository> CreateSutAsync()
{
var sut = new MongoAssetRepository(fixture.Database, A.Fake<ILogger<MongoAssetRepository>>(), string.Empty);
await sut.InitializeAsync(default);
return sut;
}
}