0
有一個類X;模擬靜態枚舉內部最終類
public final class X {
private X() {}
...
public static enum E {
thingA("1"),
thingB("0")
public boolean isEnabled(){...}
}
...
}
在一些其他類
有一個方法M.
public class AnotherClass{
public void M(){
if (E.thingB.isEnabled()) {
doSomething();
}
}
...
}
我想測試M法,是可以使用的Mockito/powermockito到 模擬語句中如果。做這樣的事情
when(E.thingB.isEnabled()).thenReturn(true)?
你自己嘗試過嗎? – 2015-02-05 17:02:14