Пример #1
0
        public async Task UpdateConteudo(Update command, ContentsController subject)
        {
            // Arrange

            // Act
            var result = await subject.UpdateConteudo(command);

            // Assert
            result.Should()
            .BeAssignableTo <IActionResult>().And
            .BeOfType <NoContentResult>();
        }