public async Task ShouldRestrictChannelAccess_WhenValidRequestCalled() { var command = GenerateCommand(); await _appFixture.SendAsync(command); await _moderationService.ReceivedWithAnyArgs(1).RestrictChannelAccess(default, default, default);
public async Task ShouldPerformBanningOfMember_WhenValidRequestCalled() { var command = new BanCommand { GuildId = 70650, UserId = 90, Reason = "You're Annoying", }; await _appFixture.SendAsync(command); await _moderationService.ReceivedWithAnyArgs(1).BanAsync(default, default);