@Autowired
private ForumCategoryService forumCategoryService;
@Test
public void testCreateForumCategory() {
ForumCategory category = new ForumCategory();
category.setLabel("Java 技术");
category.setCreatedAt(new Date());
category.setProjectId(1);
category.setCreatedById(1);
//
forumCategoryService.createForumCategory(category);
}