Android 項目 Junit 測試

來源:互聯網
上載者:User

1.在manifest檔案中配置<instrumentation>:  <instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.broadvision.proguard" /> 作為manifest 標籤的子標籤,
android:targetPackage 就是自己下面步驟建立的測試類別(AndroidTestCase的子類)的包名。

2.在manifest檔案中配置<uses-library>:<uses-library android:name="android.test.runner" />作為<application>標籤的子標籤(也就是說放在它裡面)。

3.建立TestCase的包:com.broadvision.proguard 可以是任意包名,應該和第一步的包名一直。

4.在建立的包下面建立AndroidTestCase的子類,比如MainTestCase。

6.在建立的MainTestCase類裡面添加測試方法,方法名稱必須以test開頭,用public void 修飾,如

 public void testSomething() throws Throwable {
    //方法體
  }

7.右擊項目,以“Android Junit Test”的方式運行會出現結果:

或者:

Android 執行android:targetPackage 包下面所有AndroidTestCase的子類的測試方法,並且會以樹狀結構的形式來顯示

它們的測試方法時候執行成功以及執行時間等有效資訊。

謝謝大家指正。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.