Files
kmp-template/app/composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt
2025-09-22 12:26:25 -03:00

12 lines
192 B
Kotlin

package dev.carlosmartino.triplogic
import kotlin.test.Test
import kotlin.test.assertEquals
class ComposeAppCommonTest {
@Test
fun example() {
assertEquals(3, 1 + 2)
}
}