单元测试有两种方法:根据具体情况而选择
1.在项目本身创建单元测试类,需要对项目清单文件:AndroidManifest.xml进行配置.
在<application></application>之间加<uses-library android:name="android.test.runner" />
之后加
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="Test For My App."
android:targetPackage="测试类的的包名" />
在Outline视图右键写好的测试方法依次 Run As > Android Junit Test
之后可查看测试结果 如:
此方法不需要自己配置清单文件,创建项目时便自动配置好了,更加专业化应选此方法
最新内容请见作者的GitHub页:http://qaseven.github.io/
时间: 2024-10-25 21:41:26