Beispiel #1
0
        public async Task ThenTheUnlockCodeIsFoundUsingAMediatr()
        {
            var unlockCodeLength = await _accountOrchestrator.GetUnlockCodeLength();

            Assert.AreEqual(UnlockCodeLength, unlockCodeLength);
        }
Beispiel #2
0
 private async Task <int> GetUnlockCodeLength()
 {
     return(await _accountOrchestrator.GetUnlockCodeLength());
 }