1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.blks.goods;
|
| import com.blks.goods.job.HDKGoodsJob;
| import org.junit.jupiter.api.Test;
| import org.springframework.boot.test.context.SpringBootTest;
|
| import javax.annotation.Resource;
|
| @SpringBootTest
| class GoodsApplicationTests {
|
| @Resource
| private HDKGoodsJob job;
|
| @Test
| void contextLoads() {
| try {
| job.newAdd("");
| } catch (Exception e) {
| e.printStackTrace();
| }
| }
|
| }
|
|