14 lines
270 B
Kotlin
14 lines
270 B
Kotlin
import com.dowstats.configuration.StorageConfig
|
|
import com.dowstats.service.w40k.IconsService
|
|
import org.junit.jupiter.api.Test
|
|
|
|
class InconConvertServiceTest {
|
|
|
|
@Test
|
|
fun convertIcon() {
|
|
|
|
println(mapOf(1 to 3, 2 to 4) + mapOf(3 to 5, 5 to 6))
|
|
|
|
|
|
}
|
|
} |