blob: aabc5f05fc632430d1abf44eac40822aeb221e47 [file] [log] [blame]
class CurlyBracketLayoutTest extends GroovyTestCase
{
void testBracketPlacement()
{
def foo = "abc"
if (foo.contains("b"))
{
println "Worked a treat. foo = $foo"
}
else
{
fail("Should have found 'b' inside $foo")
}
def list = [1, 2, 3]
list.each
{
println it
}
}
}