codecamp

相关名词介绍

UT 测试(Unit  Testing 单元测试)

        类型:白盒测试

        评估标准:逻辑覆盖率

IT 测试(Integrate  Testing 集成测试)

        类型:灰盒测试

        评估标准:接口覆盖率

ST 测试(System Testing 系统测试)

        类型:黑盒测试

        评估标准:测试用例对产品需求的覆盖率

冒烟测试(Smoke Testing)

功能测试(Functional Testing)

性能测试(Performance Testing)

安全性测试(Security Testing)

兼容性测试(Configuration Testing)

用户界面测试(GUI Testing)

用户体验测试(UE Testing)


温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

App 系统测试

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }