package groovy;
/**
* Sample class used for testing that groovy can call inner classes contructors.
*
* @author Guillaume Laforge
*
* @cvs.revision $Revision: 1.3 $
*/
public class Out
package groovy;
/**
* Arbitrary holder for Java Methods to be called by Groovy TestCases.
* @author Dierk Koenig
*/
public class SomeClass {
// currently not supported to be called from Groov
package groovy.lang;
import org.codehaus.groovy.classgen.TestSupport;
/**
* @author Steve Goetze
* @author Jeremy Rayner
*/
public class ScriptIntegerDivideTest extends TestSupport {
/**
* C
class ConstructorTest extends GroovyTestCase {
public ConstructorTest() {
println "Hey"
}
public void testConstructor() {
def foo = new ConstructorTest()
assert f
/**
* ConstructorThisCallBug.groovy
*
* Test Script for the Jira issue: GROOVY-994.
*
* @author Pilho Kim
* @date 2005.08.05.06.21
*/
package groovy.bugs
public class ConstructorT