我必须进行 Android Junit 测试。来源就像这样:
public class A extends Activity{
private classB mB;
private int mType = 2;
somebutton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
mB.showDialog(
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
//next line is the modified and I have to make test file
mB.setType(mType);
}
}
)
}
}
}
我可以让测试点击按钮并准备所有其他需要的东西,但我想如何断言True?并且没有“getType()”,“mB”中的“Type”是私有的。
感谢您的时间。