Exemplo n.º 1
0
        public void CategoriesMenu_Should_CallGetCategoriesForGivenMainCategoryOnlyOnce(int idCategory)
        {
            //Arrange
            //SetUp

            //Act
            var result = controller.CategoriesMenu(idCategory);

            //Assert
            contextService.Verify(v => v.GetCategoriesForGivenMainCategory(It.IsAny <int>()), Times.Once);
        }