using Microsoft.Extensions.Logging; using Moq; using PARR.Core.Repositories.Interfaces.Job; using PARR.Core.Repositories.Interfaces.Unit; using PARR.Core.Services.Shortcodes; using PARR.Core.Services.UnitFilterService; using PARR.Domain.Settings; namespace PARR.DAL.Tests.DomainServices.Implementations { public class ShortcodesServiceTests { private readonly Mock> loggerMock = new(); private readonly Mock settingsMock = new(); private readonly Mock jobServiceMock = new(); private readonly Mock unitServiceMock = new(); private readonly Mock unitInValueServiceMock = new(); private readonly Mock unitFieldServiceMock = new(); private readonly Mock unitFilterServiceMock = new(); [Fact] public async Task ApplyShortcodesAsync_WithEc_ShouldReplaceEc() { } } }