サンプルテストケースを作成しました。ここでvoidインスタンスメソッドを模擬したいと思います。私は驚いています。私のテストケースは、expectLastCallメソッドを呼び出さずに渡しています。私が知りたいのは、expectLastCallの呼び出しはインスタンスのvoidメソッドをモックしている間は不要ですか?インスタンスのvoidメソッドのmockingが 'expectLastCall'メソッドを呼び出さずに動作しています
StringUtil.java
package com.sample.util;
import com.sample.model.MethodNotImplementedException;
public class StringUtil {
public String toUpperAndRepeatStringTwice(String str) {
String upperCase = str.toUpperCase();
sendStringToLogger(upperCase);
return upperCase + upperCase;
}
public void sendStringToLogger(String str){
throw new MethodNotImplementedException();
}
}
StringUtilTest.java
package com.sample.util;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.api.easymock.PowerMock;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
@RunWith(PowerMockRunner.class)
@PrepareForTest({ StringUtil.class })
public class StringUtilTest {
@Test
public void toUpperAndRepeatStringTwice() {
StringUtil stringUtil = PowerMock.createPartialMock(StringUtil.class, "sendStringToLogger");
String str = "HELLO PTR";
stringUtil.sendStringToLogger(str);
//PowerMock.expectLastCall().times(1);
PowerMock.replayAll();
String result = stringUtil.toUpperAndRepeatStringTwice("hello ptr");
assertEquals(result, "HELLO PTRHELLO PTR");
}
}
答えはこちら[ここ](http://stackoverflow.com/questions/22831523/easymock-void-method) –
ちょっと不思議なこと:あなたはここでPowerMockを使っていますか? Mockitoは、PowerMockに頼らずに、あなたの 'StringUtil'を偽装したりスパイしたりすることができるはずです...ここではユースケースがないのですか? –
PowerMockとEasyMockを使用しています。ちょうど実験する –