You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
IESExtension/src/test/java/cn/teammodel/TeamModelExtensionApplicati...

20 lines
456 B

package cn.teammodel;
import cn.teammodel.manager.DingAlertNotifier;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class TeamModelExtensionApplicationTests {
@Autowired
private DingAlertNotifier notifier;
@Test
void contextLoads() {
notifier.send("告警: 测试消息推送封装模块");
}
}