2022-06-21 20:47:46 +08:00
|
|
|
package com.njcn;
|
|
|
|
|
|
2024-09-13 20:31:32 +08:00
|
|
|
import com.njcn.supervision.api.TempLineRunTestFeignClient;
|
2022-06-21 20:47:46 +08:00
|
|
|
import com.njcn.system.service.IDictTypeService;
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author hongawen
|
|
|
|
|
* @version 1.0.0
|
|
|
|
|
* @date 2021年12月14日 12:55
|
|
|
|
|
*/
|
|
|
|
|
public class DictDataTest extends BaseJunitTest{
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private IDictTypeService dictTypeService;
|
|
|
|
|
|
2024-09-13 20:31:32 +08:00
|
|
|
@Autowired
|
|
|
|
|
private TempLineRunTestFeignClient tempLineRunTestFeignClient;
|
|
|
|
|
|
2022-06-21 20:47:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void test(){
|
2024-09-13 20:31:32 +08:00
|
|
|
tempLineRunTestFeignClient.isTestRunStartOrEnd();
|
2022-06-21 20:47:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|