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