using Chiara.Services; using Microsoft.Extensions.Logging; namespace Chiara.Tests.Utils; public static class MockCreator { public static ILogger CreateNoOutputLogger() { Mock> mock = new(); return mock.Object; } public static T CreateEmptyMock() where T : class { Mock mock = new(); return mock.Object; } }