android测试编写步骤

1\编写一个类继承( extends AndroidTestCase)

2\编写测试运行的方法

3\在manifest中添加

 <instrumentation 
        android:name="android.test.InstrumentationTestRunner"
        android:targetPackage="com.gyarmy.test1" >
    </instrumentation>
4\在application中添加

<uses-library
            android:name="android.test.runner">
            
        </uses-library>

5\ 启动模拟器 run as Android junit 测试!


6\运行测试程序


原文链接: android测试编写步骤 版权所有,转载时请注明出处,违者必究。
注明出处格式:流沙团 ( https://gyarmy.com/post-108.html )

发表评论

0则评论给“android测试编写步骤”