2015-04-30 222 views

回答

2

請看這裏的Android來源:https://android.googlesource.com/platform/frameworks/base/+/donut-release/core/java/android/test/AndroidTestCase.java

這裏是源:

public void testAndroidTestCaseSetupProperly() { 
    assertNotNull("Context is null. setContext should be called before tests are run", 
      mContext);   
} 

所有它做的是斷言不null。我非常確定它必須是一些需要一段時間的其他測試用例。

空的,但官方文檔在這裏:http://developer.android.com/reference/android/test/AndroidTestCase.html#testAndroidTestCaseSetupProperly()

相關問題