我正在測試一些使用java庫的groovy代碼,我想模擬庫調用,因爲他們使用網絡。所以被測代碼看起來是這樣的:如何嘲笑'新'運營商
def verifyInformation(String information) {
def request = new OusideLibraryRequest().compose(information)
new OutsideLibraryClient().verify(request)
}
我使用MockFor和StubFor嘗試,但我得到的錯誤,如:
No signature of method: com.myproject.OutsideLibraryTests.MockFor() is applicable for argument types: (java.lang.Class) values: [class com.otherCompany.OusideLibraryRequest]
我使用Grails 2.0.3。