相关代码 |
|
package groovy.bugs /** * @version $Revision: 1.5 $ */ class StaticMethodCallBug extends GroovyTestCase { void testBug() { def value = TestSupport.mockStaticMethod() assert value == "cheese" } void testStaticProperty() { def value = TestSupport.mockStaticProperty assert value == "cheese" } }