Beispiel #1
0
        public async void GetAsyncShoppingCartByUserId_UserDoesntExist_ReturnNull()
        {
            var userId = 5;

            var cart = await _shoppingCartRepository.GetAsync(userId);

            Assert.Null(cart);
        }