summaryrefslogtreecommitdiff
path: root/integration-test/src/macosTest/kotlin/sample/SampleTestsNative.kt
blob: 5ea67274db0d8569c0098701d42c2a28078a191d (plain)
1
2
3
4
5
6
7
8
9
10
11
package sample

import kotlin.test.Test
import kotlin.test.assertTrue

class SampleTestsNative {
    @Test
    fun testHello() {
        assertTrue("Native" in hello())
    }
}