feiyu02
2025-06-03 0bfd1f3b422677ddfed45f13fc034f17f049b9d5
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
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.flightfeather.uav
 
import com.flightfeather.uav.domain.entity.GridDataDetail
import com.flightfeather.uav.domain.mapper.GridDataDetailMapper
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
import tk.mybatis.mapper.entity.Example
 
@RunWith(SpringRunner::class)
@SpringBootTest
class UAVApplicationTests {
 
    @Autowired
    lateinit var realTimeDataService: RealTimeDataService
 
    @Test
    fun contextLoads() {
    }
 
    @Test
    fun foo1(): Unit {
 
    }
 
    @Test
    fun logTest() {
        val log = LoggerFactory.getLogger(javaClass)
        log.trace("trace")
        log.debug("debug")
        log.warn("warn")
        log.info("info")
        log.error("error")
    }
 
    @Test
    fun foo2() {
        val r = realTimeDataService.getSecondData(null, null, "2021-01-13 14:30:00", "2021-01-13 14:45:00", 0, null, 10)
        println(r)
    }
 
}