You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Android_boot_image_editor/bbootimg/src/test/kotlin/EnvironmentVerifierTest.kt

35 lines
603 B
Kotlin

import cfig.EnvironmentVerifier
import org.junit.Test
import org.junit.Assert.*
import org.junit.Before
class EnvironmentVerifierTest {
private val envv = EnvironmentVerifier()
@Test
fun getHasLz4() {
val hasLz4 = envv.hasLz4
println("hasLz4 = $hasLz4")
}
@Test
fun getHasDtc() {
val hasDtc = envv.hasDtc
println("hasDtc = $hasDtc")
}
@Test
fun getHasXz() {
val hasXz = envv.hasXz
println("hasXz = $hasXz")
}
@Test
fun getGzip() {
val h = envv.hasGzip
println("hasGzip = $h")
}
}