Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 467 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 467 Bytes

Test4k

compile 'com.github.christophpickl.kpotpourri:test4k:$versionKPotpourri'

Test extensions using TestNG, hamkrest and mockito-kotlin.

import com.github.christophpickl.kpotpourri.test4k.skip
import org.testng.annotations.Test

// instead of throwing a SkipException which leads to a warning about unreachable code ...
@Test fun `test is still work in progress`() {
    skip("WIP")
    // ... no warning about unreachable code
}