|
Groovy example source code file (Groovy2351Bug.groovy)
The Groovy Groovy2351Bug.groovy source code
package groovy.bugs
class Groovy2351Bug extends GroovyTestCase {
void testVarArgs () {
def a = new VarArgs()
assertEquals( "method with Integer", a.method(1, 2, 3, 4, 5))
assertEquals( "method with Objects", a.method("", 2, "22", 4, 5))
}
}
class VarArgs {
def method(Object... args) { "method with Objects" }
def method(Integer... args) { "method with Integer" }
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Groovy2351Bug.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.