|
Groovy example source code file (ClosureWithEmptyParametersTest.groovy)
The Groovy ClosureWithEmptyParametersTest.groovy source code
package groovy
/**
* @author <a href="mailto:jstrachan@protique.com">James Strachan
* @version $Revision: 4996 $
*/
class ClosureWithEmptyParametersTest extends GroovyTestCase {
void testNoParams() {
def block = {-> println "hey I'm a closure!" }
println "About to call closure"
block.call()
println "Done"
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy ClosureWithEmptyParametersTest.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.