Beispiel #1
0
        public async Task ApplyVoucherAsync_Calls_GetAsync()
        {
            await _sut.ApplyVoucherAsync(Models.Constants.VoucherCode5);

            _mockVoucherService.Verify(s => s.GetAsync(Models.Constants.VoucherCode5), Times.Once);
        }