From df881fabbfbde09b9ec53b53e500d43ac314d736 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期三, 03 二月 2021 10:38:12 +0800 Subject: [PATCH] 1. 调整获取数据的排序为按时间升序 --- src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt b/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt index d1be554..6bc811e 100644 --- a/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt +++ b/src/test/kotlin/com/flightfeather/uav/UAVApplicationTests.kt @@ -1,8 +1,10 @@ package com.flightfeather.uav +import com.flightfeather.uav.lightshare.service.RealTimeDataService import org.junit.Test import org.junit.runner.RunWith import org.slf4j.LoggerFactory +import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest import org.springframework.test.context.junit4.SpringRunner @@ -10,6 +12,8 @@ @SpringBootTest class UAVApplicationTests { + @Autowired + lateinit var realTimeDataService: RealTimeDataService @Test fun contextLoads() { @@ -30,4 +34,10 @@ log.error("error") } + @Test + fun foo2() { + val r = realTimeDataService.getSecondData(null, "2021-01-13 14:30:00", "2021-01-13 14:45:00", null, 10) + println(r) + } + } -- Gitblit v1.9.3