Android本地JUnit Text
步骤
- 创建一个和
source
文件,里面添加和src
目录相同的包。 - 在
AndroidManifest.xml
文件manifest
根节点添加如下文件
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.zlpro.mobilesafe" >
</instrumentation>
- 在
application
节点下添加
<uses-library android:name="android.test.runner" />
- 创建一个要测试
java
文件继承AndroidTestCase
类,在里面直接写要测试代码就可以了, - 获取上下文
getContext()
。