public async Task TestGetSet() { const string url = "https://test.com"; await _repository.AddAsync(url); Assert.IsTrue(await _repository.ExistsAsync(url)); }
private async ValueTask <bool> NotSent(Update update) { return(!await _sentUpdatesRepository.ExistsAsync(update.Url)); }