コード例 #1
0
        public void Get_ReturnsActionResltType_WhenAggregationTypeIsSupported()
        {
            var result = inventoriesController.Get(inventoryAggregationDto);

            Assert.IsInstanceOf(typeof(ActionResult <List <BrandQuantityDto> >), result);
        }