コード例 #1
0
        public void Should_display_in_recents_entry()
        {
            Post post = new Post("title", "content", "author");
            blogService.Post(post);

            Assert.AreEqual(post, blogService.GetRecentPost());
        }
コード例 #2
0
 public void Post(Post post)
 {
     postDao.Save(post);
 }