blob: e85c3776e67b846285c249c397bd35dcfb6e2d3a [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision$
*/
class StaticMethodCallBug extends GroovyTestCase {
void testBug() {
def value = TestSupport.mockStaticMethod()
assert value == "cheese"
}
void testStaticProperty() {
def value = TestSupport.mockStaticProperty
assert value == "cheese"
}
}