Files
Advent-of-Code/2023/02/Kotlin/src/test/kotlin/TestMain.kt
2025-06-06 00:10:39 +02:00

8 lines
146 B
Kotlin

import kotlin.test.Test
import kotlin.test.assertEquals
internal class TestMain {
@Test fun test() {
assertEquals(true, true)
}
}