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.
16 lines
349 B
16 lines
349 B
|
2 years ago
|
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()
|
||
|
|
}
|
||
|
|
})
|