You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
349 B

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()
}
})