Exemplo n.º 1
0
        public async Task ThenTheUnlockCodeIsFoundUsingAMediatr()
        {
            var unlockCodeLength = await _accountOrchestrator.GetUnlockCodeLength();

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