|
Groovy example source code file (ByteIndexBug.groovy)
The Groovy ByteIndexBug.groovy source code
package groovy.bugs
/**
* @author Robert Fuller
* @version $Revision: 4996 $
*/
class ByteIndexBug extends GroovyTestCase {
// TODO: this tests a string with 128 nulls - is that what is intended?
void testBug() {
def sb = new StringBuffer("\"\"\"\n")
for (j in 0..127){ // 126 is okay.
sb.append('$').append("{x}")
}
sb.append("\n\"\"\"\n")
def b = new Binding(x:null)
new GroovyShell(b).evaluate(sb.toString(),"foo")
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy ByteIndexBug.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.