1、在进行单元测试前首先必须AndroidManifest.xml中进行配置: (1)<!-- 在根节点 manifest节点下放置 指令集 i
1、在进行单元测试前首先必须AndroidManifest.xml中进行配置: (1)<!-- 在根节点 manifest节点下放置 指令集 instrumentation --> <instrumentation android:name="android.test.InstrumentationTestRunner" android:label="Tests for My App" android:targetPackage="com.xunfang.junit" /> 上面这些代表单元测试的框架的启动装置,启动装置有好几类,默认使用上面的这种。 targetPackage与上面的package相同,为的是使单元测试和当前应用处于同一进程中 (2)<!-- 使用的函数库 application节点的下面--> <uses-library android:name="android.test.runner" /> 代表单元测试的函数库 附上代码: AndroidManifest.xml中的配置: <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> <!-- 配置在manifest中 --> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.xunfang.junit" > </instrumentation> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <!-- 配置在application标签中 --> <uses-library android:name="android.test.runner"/> <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> </application> 上面两段有背景色的是配置全局文件中的配置 业务逻辑中的代码: public class MyMath { public int add(int a, int b ){ return a + b; } } 单元测试代码: public class MyJuniteTestCase extends AndroidTestCase { public void test(){ MyMath my = new MyMath() ; assertEquals(10, my.add(4, 6)) ; } } 测试步骤: (1) 项目--》右键--》Run As--》Android Jutil Test (2)打开单元测试代码--》在outLine中选择你要测试的方法--》右键--》Run As--》Android Jutil Test
--结束END--
本文标题: Android应用的单元测试
本文链接: https://lsjlt.com/news/28783.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0