标签:android io ar strong sp on amp line bs
JUnit单元测试
1 配置单元测试环境,向AndroidManifest.xml中添加节点
1)添加manifest节点,com.example.junit为自己要测试的包名
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.example.junit"/>
2)添加application节点
<uses-library android:name="android.test.runner"/>
2 创建单元测试类
该类继承android.test.AndroidTestCase类。
3 在测试类中编写单元测试方法testxxx()
4 在Outline视图,右键单击测试方法testxxx(),"Run As"--"Android JUnit Test"
标签:android io ar strong sp on amp line bs
原文地址:http://www.cnblogs.com/chrono/p/4024680.html