コード例 #1
0
        public void CreatePost_NoContent_ShouldFail()
        {
            // arrange
            var postWriter = new PostWriter(_mockPostRepo.Object, _mockCommentRepo.Object, null);

            // act
            Action action = () =>
                            postWriter.CreatePost(null);

            // assert
            action.ShouldThrow <Exception>();
        }
コード例 #2
0
ファイル: PostApiController.cs プロジェクト: madsny/PawPawZ
 public int CreateNew(Post post, int?groupId)
 {
     return(_postWriter.CreatePost(post.Body, groupId));
 }
コード例 #3
0
ファイル: PostController.cs プロジェクト: madsny/PawPawZ
        public ActionResult Index(Post post, int?groupId)
        {
            var id = _postWriter.CreatePost(post.Body, groupId);

            return(RedirectToAction("Get", new { Id = id }));
        }