@Autowired
private ForumTopicService forumTopicService;
@Test
public void createForumTopic() {
ForumTopic topic = new ForumTopic();
topic.setTitle("forum title");
topic.setContent("forum content");
topic.setCreatedAt(new Date());
topic.setModifiedAt(new Date());
topic.setCreatedById(1);
topic.setModifiedById(1);
topic.setProjectId(1);
topic.setCategoryId(1);
//
forumTopicService.createForumTopic(topic);
}