1 / 22
文档名称:

JavaScript单元测试.pptx

格式:pptx   大小:758KB   页数:22页
下载后只包含 1 个 PPTX 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

JavaScript单元测试.pptx

上传人:cdsqbyl 2018/6/16 文件大小:758 KB

下载得到文件列表

JavaScript单元测试.pptx

相关文档

文档介绍

文档介绍:JavaScript单元测试
单元测试的好处
正确性
文档记录
表达设计
驱动开发
保证可重构
单元测试的局限
测试不完全
耗时
测试工具
Karma
Mocha/Jasmine/Qunit
chai/assert/-assert/

“The main goal for Karma is to bring a productive testing environment to developers. ”
Karma
测试框架
断言库
测试用例
测试代码
测试环境
测试报告

“Mocha is a feature-rich JavaScript test framework running on and in the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases.”
Mocha
开发模式
TDD(Test Drive Development测试驱动开发)
BDD(Behavior Drive Development行为驱动开发)