public async void Must_exist() { Assert.That(await _repository.ExistsAsync(_sessionId, _nonce, DateTime.MinValue.ToUniversalTime()), Is.True); }
public async void Must_not_exist() { Assert.That(await _repository.ExistsAsync(_sessionId, _nonce, DateTime.UtcNow), Is.False); }