對Android應用進行單元測試

來源:互聯網
上載者:User
第一步:在AndroidManifest.xml中加入如下兩段代碼:[java] view plaincopy<manifest xmlns:android="http://schemas.android.com/apk/res/android"        package="com.pccw"        android:versionCode="1"        android:versionName="1.0">      <uses-sdk android:minSdkVersion="8" />        <application android:icon="@drawable/icon" android:label="@string/app_name">          <activity android:name=".MainActivity"                    android:label="@string/app_name">              <intent-filter>                  <action android:name="android.intent.action.MAIN" />                  <category android:name="android.intent.category.LAUNCHER" />              </intent-filter>          </activity>          <!—添加代碼1-->          <uses-library android:name="android.test.runner"/>  </application>      <!—添加代碼2-->          <instrumentation android:name="android.test.InstrumentationTestRunner"              android:targetPackage="com.pccw" android:label="aaa"/>  </manifest>   1.         <uses-library android:name="android.test.runner"/>代表把單元測試架構中的一些依賴庫引入進來2.         <instrumentation android:name="android.test.InstrumentationTestRunner"android:targetPackage="com.pccw" android:label="aaa"/>代表登錄區測試架構的啟動裝置,啟動裝置有好幾個類,可以選擇,一般情況下我們使用上面這個。3.         targetPackage與上面的package相同,代表單元測試架構和當前應用是處於同一個進程中 第二步:編寫商務邏輯,即需要被測試的模組[java] view plaincopypublic class PersonService {            public void save(String name){          String sub = name.substring(6);      }            public int add(int a, int b){          return a+b;      }  }   第三步:編寫單元測試代碼[java] view plaincopypublic class PersonServiceTest extends AndroidTestCase {            public void testSave() throws Exception {          PersonService service = new PersonService();          service.save(null);      }            public void testAdd() throws Exception {          PersonService service = new PersonService();          int result = service.add(1, 2);          Assert.assertEquals(3, result);      }  }   第四步:開啟eclipse中的outline視窗,其中會顯示單元測試類的所有的方法 然後想要測試哪個方法,則在哪個測試方法上右鍵滑鼠,選擇Run As,然後再選擇Android JUnit Test即可,如果有異常或者錯誤,則會出現如下情況: 如果是正常的,則會如下:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.