コード例 #1
0
ファイル: TopicControllerTest.cs プロジェクト: emd-che/Forum
        public void UpdateExisitingTopicReturnsNoContentPassed()
        {
            var id          = 2;
            var topicUpdate = new TopicUpdateDto()
            {
                Title = "Test Title",
                Body  = "Test Body"
            };
            var noContentResult = _controller.UpdateTopic(id, topicUpdate);

            Assert.IsType <NoContentResult>(noContentResult);
        }