31 lines
666 B
Kotlin
31 lines
666 B
Kotlin
@file:OptIn(ExperimentalResourceApi::class)
|
|
package domain
|
|
|
|
import org.jetbrains.compose.resources.ExperimentalResourceApi
|
|
//import org.junit.Test
|
|
import yaep.composeapp.generated.resources.Res
|
|
import yaep.composeapp.generated.resources.compose_multiplatform
|
|
import kotlin.test.Test
|
|
import kotlin.test.fail
|
|
|
|
class GameTest {
|
|
|
|
@Test
|
|
fun areCategoriesValid() {
|
|
// Game(
|
|
// categories = listOf(
|
|
// category {
|
|
// item(Res.drawable.compose_multiplatform)
|
|
// }
|
|
// ),
|
|
// Grid(
|
|
//
|
|
// )
|
|
// )
|
|
}
|
|
|
|
@Test
|
|
fun areRulesViolated() {
|
|
TODO()
|
|
}
|
|
} |