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