Exemple #1
0
        public void EditGenre_should_edit_genre()
        {
            //Act
            var actionResult = _genresController.EditGenre(It.IsAny <int>(), new GenreModel());

            //Assert
            actionResult.Should().BeOfType <OkNegotiatedContentResult <string> >();
        }