提问人:Keerthi Senthil 提问时间:6/16/2023 更新时间:6/16/2023 访问量:41
如何为私有最终匿名内部类编写 testng 测试用例
How to write testng testcase for private final anonymous inner class
问:
Public class Formatter{
private final SampleFormatter sampleFormatter = new SampleFormatter() {
@Override
public String formatDouble (int tag, double Value, int pre) {
if (Double.isNaN(Value)) {
return "NaN";
}
if (Value == 0.0D) {
return "0";
}
else {
return df.format(Value);
}
}
@Override
public String formatBoolean(int i,boolean b){
return DEFAULT_FORMATTER.format boolean(i,b);
}
};
}
我正在使用 testNg 和 Mockito 编写单元测试用例。
在这里,如何测试formatDouble和formatBoolean方法。
我也想在我的单位案例中测试这些方法,以获得更好的覆盖率。知道如何测试私有最终匿名内部类方法吗?
答: 暂无答案
评论
sampleFormatter