package tv.anypoint.proxy.service import io.kotest.core.spec.style.FunSpec import org.springframework.boot.test.context.SpringBootTest @SpringBootTest class LogcatServiceTest( logcatService: LogcatService ) : FunSpec({ test("start") { logcatService.startDump() Thread.sleep(5_000) logcatService.stopDump() } })