|
Groovy example source code file (Groovy1617_Bug.groovy)
The Groovy Groovy1617_Bug.groovy source code
package groovy.bugs
class Groovy1617_Bug extends GroovyTestCase {
void testCoerceStringIntoStringArray() {
def expected = ["G","r","o","o","v","y"] as String[]
def actual = "Groovy" as String[]
assert expected == actual
}
void testCoerceGStringIntoStringArray() {
def expected = ["G","r","o","o","v","y"] as String[]
def a = "Gro"
def b = "ovy"
// previously returned ["Groovy"]
def actual = "$a$b" as String[]
assert expected == actual
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Groovy1617_Bug.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.