jvmTest.tech.skot.core.view.TestSKSpannedStringBuilder.kt Maven / Gradle / Ivy
package tech.skot.core.view
import org.junit.Test
class TestSKSpannedStringBuilder {
@Test
fun testSimple() {
val res = skSpannedString {
colored(Color(1)) {
append("coucou")
colored(Color(2)) {
append("jaune")
}
append("rouge encore")
}
}
println(res)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy