Demo eines Kotlin Mutliplatform Project (KMPP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
KotlinDemo/common/src/test/kotlin/CommonTest.kt

13 lines
237 B

import kotlin.test.*
class CommonTest {
@Test
fun testCommon() {
assertEquals("common", Common().common())
}
@Test
fun testPlatform() {
assertTrue(Common().platform().startsWith("platform-"))
}
}