|
Groovy example source code file (MethodCallTest.groovy)
The Groovy MethodCallTest.groovy source code
package groovy
class MethodCallTest extends GroovyTestCase {
void testMethodCall() {
System.out.print("hello")
println("world!")
}
void testObjectMethodCall() {
def c = getClass()
assert c != null
assert c.name.endsWith("MethodCallTest")
assert c.getName().endsWith("MethodCallTest")
}
void testObjectMethodCall2() {
def s = "hello"
def c = s.getClass()
assert c != null
assert c.name == "java.lang.String"
assert c.getName() == "java.lang.String"
}
void testGetNameBug() {
def c = getClass()
def n = c.getName()
assert c.getName().endsWith("MethodCallTest")
assert n.endsWith("MethodCallTest")
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy MethodCallTest.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.