IDE perf tests for K/N: keep Kotlin & Gradle versions in *.properties

This commit is contained in:
Dmitriy Dolovov
2020-02-27 21:05:15 +07:00
parent c4a89c0201
commit 80f2c091b4
38 changed files with 218 additions and 180 deletions
@@ -0,0 +1,11 @@
import kotlin.test.Test
import kotlin.test.assertTrue
private const val GREETING = "Hello, Kotlin/Native!"
class HelloTest {
@Test
fun testHello() {
assertTrue("Kotlin/Native" in GREETING)
}
}
@@ -0,0 +1,11 @@
import kotlin.test.Test
import kotlin.test.assertTrue
private const val GREETING = "Hello, Kotlin/Native!"
class HelloTest2 {
@Test
fun testHello() {
assertTrue("Kotlin/Native" in GREETING)
}
}
@@ -0,0 +1,11 @@
import kotlin.test.Test
import kotlin.test.assertTrue
private const val GREETING = "Hello, Kotlin/Native!"
class HelloTest3 {
@Test
fun testHello() {
assertTrue("Kotlin/Native" in GREETING)
}
}