class TripleQuotedStringTest extends GroovyTestCase {
void testTripleQuotedString() {
def s = """
Lots of 'text' with a variety of ""quoting "" and
a few lines
and some esc
class ModuloTest extends GroovyTestCase {
int modulo = 100
void testModuloLesser() {
for (i in 0..modulo-1) {
assert (i%modulo)==i
}
}
void testModuloEqual() {
for (i in 0.