using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Text; namespace JCSoft.WX.FrameworkTest.MockObject { public class MockLogger : ILogger { public IDisposable BeginScope(TState state) { throw new NotImplementedException(); } public bool IsEnabled(LogLevel logLevel) { throw new NotImplementedException(); } public void Log(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func formatter) { throw new NotImplementedException(); } } }