blob: 0ab2fb03c5020b3359eb108489666a162a7d0a68 [file] [log] [blame]
class TripleQuotedStringTest extends GroovyTestCase {
void testTripleQuotedString() {
def s = """
Lots of 'text' with a variety of ""quoting "" and
a few lines
and some escaped \""" quoting and
an ending""".trim()
println(s)
assert s != null
def idx = s.indexOf("quoting and")
assert idx > 0
}
static void main( String[] args ) {
def o = new TripleQuotedStringTest();
o.testTripleQuotedString();
}
}