mirror of
https://github.com/luoye663/e5.git
synced 2025-04-27 09:18:50 +00:00
23 lines
472 B
Java
23 lines
472 B
Java
|
import io.qyi.e5.bean.influx2.InfluxdbConfig;
|
||
|
import io.qyi.e5.outlook_log.service.IOutlookLogService;
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
import org.mockito.InjectMocks;
|
||
|
import org.mockito.Mock;
|
||
|
|
||
|
public class influxdb2Test {
|
||
|
|
||
|
@InjectMocks
|
||
|
InfluxdbConfig influxdbConfig;
|
||
|
|
||
|
@Mock
|
||
|
IOutlookLogService outlookLogService;
|
||
|
|
||
|
|
||
|
|
||
|
@Test
|
||
|
public void test1(){
|
||
|
// outlookLogService.findAllList(1000, 2000);
|
||
|
influxdbConfig.influxDBClient();
|
||
|
}
|
||
|
}
|