我想为我项目中的一些静态方法编写单元测试用例,
我的课程代码片段,
Class Util{
public static String getVariableValue(String name)
{
if(isWindows()){
return some string...
}
else{
return some other string...
}
}
public static boolean isWindows(){
if(os is windows)
return true;
else
return false;
}
}
基本上,当 isWindows() 返回“false”时,我想为 getVariableValue() 编写单元测试用例。我如何使用 powermock 编写这个?