|
Groovy example source code file (Bytecode4Bug.groovy)
The Groovy Bytecode4Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode4Bug extends GroovyTestCase {
def count = 0
void testInject() {
def x = [1, 2, 3].inject(0) { c, s -> c += s }
assert x == 6
}
void testUsingProperty() {
count = 0
getCollection().each { count += it }
assert count == 10
}
void testUsingIncrementingProperty() {
count = 0
getCollection().each { count++ }
assert count == 4
}
def getCollection() {
[1, 2, 3, 4]
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode4Bug.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.