如何为android方法和类编写单元测试?

时间:2018-08-29 10:08:52

标签: android unit-testing

如何为android方法和类编写单元测试?

例如:

public int dpToPx (Context context, int dp) {

float density = context.getResources().getDisplayMetrics().density;

return Math.round((float) dp * density);

}

https://developer.android.com/training/testing/unit-testing

1 个答案:

答案 0 :(得分:1)

如果您使用的是Android类,则无法编写单元测试。对于与Android相关的内容,您需要编写instrumented unit tests

参考:     https://developer.android.com/training/testing/unit-testing/instrumented-unit-tests