|
Groovy example source code file (ConstructorBug.groovy)
The Groovy ConstructorBug.groovy source code
package groovy.bugs
import org.codehaus.groovy.runtime.InvokerHelper
/**
* @author Jason Thomas
* @version $Revision: 4996 $
*/
class ConstructorBug extends GroovyTestCase {
void testBug() {
def type = new GroovyClassLoader().parseClass(new File("src/test/groovy/bugs/TestBase.groovy"))
assert type != null
println "created type: ${type}"
type = new GroovyClassLoader().parseClass(new File("src/test/groovy/bugs/TestDerived.groovy"))
assert type != null
println "created type: ${type} of type: ${type.class}"
def mytest = InvokerHelper.invokeConstructorOf(type, ["Hello"] as Object[])
assert mytest.foo == "Hello"
/** @todo fix bug
*/
/*
def test = type.newInstance()
assert test.foo == null
*/
//foo = new type('hello')
/*
*/
mytest = new TestDerived("Hello")
assert mytest.foo == "Hello"
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy ConstructorBug.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.