@Autowired
private ForumPostService forumPostService;
@Test
public void createForumPost() {
ForumPost post = new ForumPost();
post.setTitle("post title");
post.setContent("post content");
post.setCreatedAt(new Date());
post.setModifiedAt(new Date());
post.setCreatedById(1);
post.setModifiedById(1);
post.setProjectId(1);
post.setTopicId(1);
//
forumPostService.createForumPost(post);
}