假设我有一个我想测试的方法,没有return语句:
public void func(){
// some computing
// call another method: anotherFunc(par);
}
是否可以将此方法更改为:
public boolean func(){
// some computing
// call another method: anotherFunc(par);
return true;
}
如果此方法成功完成,则返回true,否则返回false,表示测试失败。