00873b6e8c
#KT-3065
17 lines
320 B
Kotlin
17 lines
320 B
Kotlin
package test.string
|
|
|
|
import kotlin.*
|
|
import kotlin.test.*
|
|
import kotlin.util.*
|
|
|
|
import junit.framework.*
|
|
|
|
class StringUtilTest() : TestCase() {
|
|
|
|
fun testToRegex() {
|
|
val re = """foo""".toRegex()
|
|
val list = re.split("hellofoobar").toList()
|
|
assertEquals(arrayList("hello", "bar"), list)
|
|
}
|
|
}
|