项目源码下载
https://github.com/Wang-Jun-Chao/AndroidProjects
测试
黑盒测试
测试逻辑业务
白盒测试
测试逻辑方法
根据测试粒度
方法测试:function test
单元测试:unit test
集成测试:integration test
系统测试:system test
根据测试暴力程度
冒烟测试:smoke test
压力测试:pressure test
单元测试junit
定义一个类继承AndroidTestCase,在类中定义方法,即可测试该方法
在指定指令集时,targetPackage指定你要测试的应用的包名
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.itheima.junit"
></instrumentation>
定义使用的类库
<uses-library android:name="android.test.runner"></uses-library>
断言的作用,检测运行结果和预期是否一致
如果应用出现异常,会抛给测试框架
更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索测试
, 压力测试
, 单元测试
, 方法
, 逻辑
, test
AndroidTestCase
android测试工具、android测试教程、android自动化测试、android单元测试、android测试框架,以便于您获取更多的相关知识。