javaで書かれたクラスのテストケースをgroovyで書こうとしています。Java クラス (name:Helper) には、HttpClient オブジェクトが取得され、executeMethod が呼び出されるメソッドが含まれています。この httpClient.executeMethod() をグルーヴィーなテストケースでモックしようとしていますが、正しくモックできません。
以下は Java クラスです //このヘルパー クラスは Java クラスです
public class Helper{
public static message(final String serviceUrl){
----------some code--------
HttpClient httpclient = new HttpClient();
HttpMethod httpmethod = new HttpMethod();
// the below is the line that iam trying to mock
String code = httpClient.executeMethod(method);
}
}
これまでにgroovyで書いたテストケースは次のとおりです。
void testSendMessage(){
def serviceUrl = properties.getProperty("ITEM").toString()
// mocking to return null
def mockJobServiceFactory = new MockFor(HttpClient)
mockJobServiceFactory.demand.executeMethod{ HttpMethod str ->
return null
}
mockJobServiceFactory.use {
def responseXml = helper.message(serviceUrl)
}
}
なぜそれが正しくモックされていないのかについてのアイデア。事前の感謝