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