🧑‍💻 完善标签服务单元测试

This commit is contained in:
ronger 2023-05-13 08:53:33 +08:00
parent 0eb8c9872e
commit e181ba8648

View File

@ -118,7 +118,7 @@ class TagServiceTest extends BaseServiceTest {
@DisplayName("添加/更新标签")
void saveTag() throws Exception {
List<LabelModel> tagLabels = tagService.findTagLabels();
assertEquals(1, tagLabels.size());
assertNotNull(tagLabels);
Tag tag = new Tag();
tag.setTagDescription("test1");
@ -130,7 +130,7 @@ class TagServiceTest extends BaseServiceTest {
assertNotNull(tag1.getIdTag());
tagLabels = tagService.findTagLabels();
assertEquals(1, tagLabels.size());
assertNotNull(tagLabels);
tag.setIdTag(null);
assertThrows(BusinessException.class, () -> tagService.saveTag(tag));
@ -142,4 +142,4 @@ class TagServiceTest extends BaseServiceTest {
List<LabelModel> tagLabels = tagService.findTagLabels();
assertFalse(tagLabels.isEmpty());
}
}
}