|
Groovy example source code file (NestedClosureBugTest.groovy)
The Groovy NestedClosureBugTest.groovy source code
package groovy.tree
/**
* Test case for a bug with nested closures
*/
class NestedClosureBugTest extends GroovyTestCase {
def b
def EXPECTED = 'root[attributes={a=xyz}; value=[child[attributes={}; value=[grandChild[attributes={}; value=[]]]]]]'
void testNestedClosureBug() {
b = NodeBuilder.newInstance()
def root = b.root(['a':'xyz'], {
b.child({
b.grandChild()
})
})
assert EXPECTED == root.toString()
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy NestedClosureBugTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.