mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
19 lines
334 B
Kotlin
19 lines
334 B
Kotlin
package prog8tests
|
|
|
|
import org.junit.jupiter.api.Disabled
|
|
import org.junit.jupiter.api.Test
|
|
import org.junit.jupiter.api.TestInstance
|
|
import kotlin.test.fail
|
|
|
|
|
|
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
|
class TestOptimizers {
|
|
|
|
@Test
|
|
@Disabled("for future implementation")
|
|
fun dummy() {
|
|
fail("dummy")
|
|
}
|
|
|
|
}
|