Пример #1
0
        public async Task GetDimCustomerByIdAsync_SomeIntNumber_DimAccountWithSomeIntKey()
        {
            _moqService.Setup(a => a.GetDimCustomerByIdAsync(It.IsAny <int>()))
            .ReturnsAsync((int x) => { return(new DimAccount()
                {
                    AccountKey = x
                }); });

            int someInt = 10;

            IDimAccountService _dimAccountService = _moqService.Object;

            DimAccount actualDimAccount = await _dimAccountService.GetDimCustomerByIdAsync(someInt);

            Assert.AreEqual(someInt, actualDimAccount.AccountKey);
        }
 public AdwentureWorkController(IDimAccountService service)
 {
     _service = service;
 }