双重预防项目-国泰新华二开定制版
heheng
2025-06-25 fa3f2aa6154d2434ffb49ed80854cec3e70aa8a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import com.ruoyi.doublePrevention.scheduls.ExecCJReportDateSchedule;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;
 
import java.io.UnsupportedEncodingException;
 
@RunWith(SpringRunner.class)
@SpringBootTest(classes = SpringBootApplication.class)
//@ActiveProfiles("dev")
@Slf4j
public class ReportTest {
    @Autowired
    ExecCJReportDateSchedule execCJReportDateSchedule;
 
    @Test
    public void testPush() throws UnsupportedEncodingException {
        execCJReportDateSchedule.execReportDateSchedule();
    }
 
}