jyy
2021-05-18 1bcb0f4f3956f61523dc7a27ee254d58a9d4b137
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
27
28
29
30
31
32
33
package com.matrix;
 
import cn.hutool.core.collection.CollUtil;
import com.matrix.system.hive.bean.SysProjUse;
import com.matrix.system.hive.dao.SysProjUseDao;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
 
import java.util.List;
 
/**
 * @author wzy
 * @date 2021-04-12
 **/
 
@RunWith(SpringRunner.class)
@SpringBootTest(classes = {ZqErpApplication.class},webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT)
public class TcProjTest {
 
    @Autowired
    private SysProjUseDao sysProjUseDao;
 
    @Test
    public void tcProjTest() {
//        List<SysProjUse> projUses = sysProjUseDao.selectTaoCanListWithProj();
//        if (CollUtil.isNotEmpty(projUses)) {
//
//        }
    }
}