blob: 1a92ba5c7289a26ad38188fe4294339ed6ab99ea [file] [log] [blame]
class MultilineStringTest extends GroovyTestCase {
void testMultilineString() {
def s = """abcd
efg
hijk
"""
println(s)
assert s != null
def idx = s.indexOf("i")
assert idx > 0
}
}