feiyu02
2025-07-10 c5f380b69707a9a09fe988a2f4bd98e142bf64ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.flightfeather.uav.lightshare.service.impl
 
import com.flightfeather.uav.lightshare.eunm.ThirdPartyLabel
import com.flightfeather.uav.lightshare.service.ThirdPartyService
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
 
@RunWith(SpringRunner::class)
@SpringBootTest
class ThirdPartyServiceImplTest {
 
    @Autowired
    lateinit var thirdPartyService: ThirdPartyService
 
    @Test
    fun fetchMissionData() {
        thirdPartyService.fetchMissionData(ThirdPartyLabel.ShenXin.value, "20240914")
    }
}