手机知识|怎么测试,手机基本功能测试( 六 )


稳定性测试也叫可靠性测试(reliability testing):是指连续运行被测系统检查系统运行时的稳定程度 。
负载测试(load testing):是指让被测系统在其能忍受的压力的极限范围之内连续运行 , 来测试系统的稳定性 。
压力测试(stress testing):是指持续不断的给被测系统增加压力 , 直到将被测系统压垮为止 , 用来测试系统所能承受的最大压力 。 (Validate the system or software can allowed the biggest stress.)
5、其他测试类型:
回归测试(regression testing)是指对软件的新的版本测试时 , 重复执行上一个版本测试时的用例 。 (When a new build or release is deployed, repeat all the test cases which has executed in the last build or release.)
冒烟测试(smoke testing) , 是指在对一个新版本进行大规模的测试之前 , 先验证一下软件的基本功能是否实现 , 是否具备可测性 。 (validate the major function is deployed or not in software of system when a new build or release is implement.)
随机测试(random testing) , 是指测试中所有的输入数据都是随机生成的 , 其目的是模拟用户的真实操作 , 并发现一些边缘性的错误 。 (means or all the test data is random, to validate the some edge bugs.)
测试流程
1.通用的测试流程:
需求——》开发——》自测(开发)——》产品/设计验收——》提测——》测试——》上线
2.流程要持续优化 , 不断改进 , 满足工作需要(如产品通过发邮件通知 , 如开发代码的review , 如单元测试的推进)一切都为了产品的质量 。
3.持续集成 , 结果及时反馈 。

推荐阅读