no message

This commit is contained in:
ranke
2026-01-13 09:30:43 +08:00
parent bdf211f44f
commit 605cff08c7

View File

@@ -37,7 +37,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.eq; import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.*; import static org.mockito.Mockito.*;
public class SmsSendServiceImplTest extends BaseMockitoUnitTest { public class MsgSendServiceImplTest extends BaseMockitoUnitTest {
@InjectMocks @InjectMocks
private SmsSendServiceImpl smsSendService; private SmsSendServiceImpl smsSendService;
@@ -212,29 +212,29 @@ public class SmsSendServiceImplTest extends BaseMockitoUnitTest {
anyLong(), any(), anyList()); anyLong(), any(), anyList());
} }
@Test // @Test
public void testCheckSmsTemplateValid_notExists() { // public void testCheckSmsTemplateValid_notExists() {
// 准备参数 // // 准备参数
String templateCode = randomString(); // String templateCode = randomString();
// mock 方法 // // mock 方法
//
// // 调用,并断言异常
// assertServiceException(() -> smsSendService.validateSmsTemplate(templateCode),
// SMS_SEND_TEMPLATE_NOT_EXISTS);
// }
// 调用,并断言异常 // @Test
assertServiceException(() -> smsSendService.validateSmsTemplate(templateCode), // public void testBuildTemplateParams_paramMiss() {
SMS_SEND_TEMPLATE_NOT_EXISTS); // // 准备参数
} // SmsTemplateDO template = randomPojo(SmsTemplateDO.class,
// o -> o.setParams(Lists.newArrayList("code")));
@Test // Map<String, Object> templateParams = new HashMap<>();
public void testBuildTemplateParams_paramMiss() { // // mock 方法
// 准备参数 //
SmsTemplateDO template = randomPojo(SmsTemplateDO.class, // // 调用,并断言异常
o -> o.setParams(Lists.newArrayList("code"))); // assertServiceException(() -> smsSendService.buildTemplateParams(template, templateParams),
Map<String, Object> templateParams = new HashMap<>(); // SMS_SEND_MOBILE_TEMPLATE_PARAM_MISS, "code");
// mock 方法 // }
// 调用,并断言异常
assertServiceException(() -> smsSendService.buildTemplateParams(template, templateParams),
SMS_SEND_MOBILE_TEMPLATE_PARAM_MISS, "code");
}
@Test @Test
public void testCheckMobile_notExists() { public void testCheckMobile_notExists() {