assertEquals("20 comments in article 2", commentDao.countByArticle(article2), 20);
}
@Test
public void testDeleteAricleWithComments() {
Blog blog = createBlog();
Article article1 = createArticle(blog);
Article article2 = createArticle(blog);
for (int i = 0; i < 10; i++) {
Comment comment = new Comment();
comment.setContent("comment " + i);