using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Application.Tests.Mock; public class MediatorMock : IMediator { public IAsyncEnumerable CreateStream(IStreamRequest request, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public IAsyncEnumerable CreateStream(object request, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task Publish(object notification, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public async Task Publish(TNotification notification, CancellationToken cancellationToken = default) where TNotification : INotification { } public Task Send(IRequest request, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task Send(TRequest request, CancellationToken cancellationToken = default) where TRequest : IRequest { throw new NotImplementedException(); } public Task Send(object request, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } }