mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
19 lines
329 B
Kotlin
Vendored
19 lines
329 B
Kotlin
Vendored
import kotlin.test.*
|
|
|
|
class <lineMarker descr="Run Test">SimpleTest</lineMarker> {
|
|
@Test fun <lineMarker descr="Run Test">testFoo</lineMarker>() {
|
|
// Will run
|
|
}
|
|
|
|
@Ignore fun testFooWrong() {
|
|
// Will not run
|
|
}
|
|
}
|
|
|
|
@Ignore
|
|
class TestTest {
|
|
@Test fun emptyTest() {
|
|
// Will not run
|
|
}
|
|
}
|