12345678910111213141516171819 |
- package com.nokia.dingtalk_auto;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- import com.nokia.dingtalk_auto.service.ZeroTrafficTaskService;
- @SpringBootTest
- public class DingtalkAutoApplicationTest {
- @Autowired
- private ZeroTrafficTaskService zeroTrafficSendService;
- @Test
- void test() throws Exception {
- zeroTrafficSendService.cronTask();
- }
- }
|