Files
kmp-template/app/composeApp/src/commonTest/kotlin/dev/carlosmartino/triplogic/ComposeAppCommonTest.kt

12 lines
192 B
Kotlin
Raw Normal View History

2025-09-17 11:31:16 -03:00
package dev.carlosmartino.triplogic
import kotlin.test.Test
import kotlin.test.assertEquals
class ComposeAppCommonTest {
@Test
fun example() {
assertEquals(3, 1 + 2)
}
2025-09-17 14:25:27 -03:00
}