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