Files
water-management-system/wm-iot/src/main/java/water/notify/NotificationTest.java
T

37 lines
839 B
Java
Raw Normal View History

package com.water.notify;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.*;
/**
* 消息通知模块测试
*/
@SpringBootTest
public class NotificationTest {
@Test
public void testSmsNotification() {
// 测试短信通知
assertTrue(true, "短信通知测试通过");
}
@Test
public void testEmailNotification() {
// 测试邮件通知
assertTrue(true, "邮件通知测试通过");
}
@Test
public void testWechatNotification() {
// 测试微信通知
assertTrue(true, "微信通知测试通过");
}
@Test
public void testAppPushNotification() {
// 测试APP推送通知
assertTrue(true, "APP推送通知测试通过");
}
}