1234567891011121314151617181920212223242526 |
- 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>(TState state)
- {
- throw new NotImplementedException();
- }
- public bool IsEnabled(LogLevel logLevel)
- {
- throw new NotImplementedException();
- }
- public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
- {
- throw new NotImplementedException();
- }
- }
- }
|