|
Groovy example source code file (MethodParameterAccessWithinClosureTest.groovy)
The Groovy MethodParameterAccessWithinClosureTest.groovy source code
package groovy
/**
* To test access to method scoped variable within closure
*
* @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner
* @version $Revision: 8042 $
*/
class MethodParameterAccessWithinClosureTest extends GroovyTestCase {
def cheese
def shop
void setUp() {
cheese = null
shop = ["wensleydale"]
}
void testSimpleMethodParameterAccess() {
assert "wensleydale" == vendor1("wensleydale")
}
void testMethodParameterWithDifferentNameToPropertyUsingClosure() {
assert "wensleydale" == vendor2("wensleydale")
}
void testMethodParameterWithSameNameAsPropertyUsingClosure() {
assert "wensleydale" == vendor3("wensleydale")
}
void testOptionalMethodParameterUsedInClosure() {
assert "wensleydale" == vendor4("wensleydale")
assert null == vendor4()
}
void testDoubleParameterAndsingleParameterUsedInClosure() {
assert vendor5(5.0d,2) == 7.0d
}
void testAccessToMethodParameterInOverwrittenMethodCalledBySuper() {
// GROOVY-2107
assertScript """
class A {
// the closure is accessing the parameter
def foo(x){ return {x}}
}
class B extends A {
def foo(y) {
super.foo(y+1)
}
}
def b = new B()
assert b.foo(1).call() == 2
"""
}
private String vendor1(cheese) {
cheese
}
private String vendor2(aCheese) {
shop.find() {it == aCheese}
}
private String vendor3(cheese) {
shop.find() {it == cheese}
}
/** note: cheese is a field, that is intended **/
private vendor4(aCheese=cheese) {
shop.find() {it == aCheese}
}
private vendor5(double a, int b) {
b.times {a++}
return a
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy MethodParameterAccessWithinClosureTest.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.