|
Groovy example source code file (TraversalTestSupport.groovy)
The Groovy TraversalTestSupport.groovy source code
package groovy.xml
class TraversalTestSupport {
private static def nestedXml = '''
<_1>
<_1_1>
<_1_1_1/>
<_1_1_2>
<_1_1_2_1/>
</_1_1_2>
</_1_1>
<_1_2>
<_1_2_1/>
</_1_2>
</_1>
'''
static void checkDepthFirst(Closure getRoot) {
def root = getRoot(nestedXml)
def trace = ''
root.depthFirst().each{ trace += it.name() + ' ' }
assert trace == '_1 _1_1 _1_1_1 _1_1_2 _1_1_2_1 _1_2 _1_2_1 '
// test shorthand
trace = ''
root.'_1_2'.'**'.each{ trace += it.name() + ' ' }
assert trace == '_1_2 _1_2_1 '
}
static void checkBreadthFirst(Closure getRoot) {
def root = getRoot(nestedXml)
def trace = ''
root.breadthFirst().each{ trace += it.name() + ' ' }
assert trace == '_1 _1_1 _1_2 _1_1_1 _1_1_2 _1_2_1 _1_1_2_1 '
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy TraversalTestSupport.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.