package cn.flightfeather.supervision.lightshare.service.Impl
|
|
import cn.flightfeather.supervision.lightshare.service.HazardousWasteService
|
import org.junit.Test
|
|
import org.junit.Assert.*
|
import org.junit.jupiter.api.extension.ExtendWith
|
import org.junit.runner.RunWith
|
import org.springframework.beans.factory.annotation.Autowired
|
import org.springframework.boot.test.context.SpringBootTest
|
import org.springframework.test.context.junit.jupiter.SpringExtension
|
import org.springframework.test.context.junit4.SpringRunner
|
|
@RunWith(SpringRunner::class)
|
@ExtendWith(SpringExtension::class)
|
@SpringBootTest
|
class HazardousWasteServiceImplTest {
|
|
@Autowired
|
lateinit var hazardousWasteService: HazardousWasteService
|
|
@Test
|
fun getFile() {
|
}
|
|
@Test
|
fun getRecord() {
|
val r = hazardousWasteService.getRecord("DBNgd7nkkYymdt7S", null)
|
println(r)
|
}
|
}
|