博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python unittest框架
阅读量:5996 次
发布时间:2019-06-20

本文共 911 字,大约阅读时间需要 3 分钟。

四个部分:

test fixture

A test fixture represents(代表) the preparation needed to perform one or more tests, and any associate cleanup actions. This may involve, for example, creating temporary or proxy databases, directories, or starting a server process.

 

test case

A test case is the individual(独立的) unit of testing. It checks for a specific response to a particular set of inputs. provides a base class, , which may be used to create new test cases.

 

test suite

A test suite is a collection of test cases, test suites, or both. It is used to aggregate(集合)  tests that should be executed together.

 

test runner

A test runner is a component which orchestrates(安排) the execution of tests and provides the outcome to the user. The runner may use a graphical interface, a textual interface, or return a special value to indicate the results of executing the tests.

 

转载于:https://www.cnblogs.com/yasmine-93yang/p/10108635.html

你可能感兴趣的文章
【转载】COM小结
查看>>
Python的高级特性2:列表推导式,生成器与迭代器
查看>>
Ubuntu 14.04 64位字体美化(使用黑文泉驿)
查看>>
[android] AndroidManifest.xml - 【 manifest -> permission】
查看>>
20150728月度会议
查看>>
explain mysql性能优化
查看>>
NoSql---MongoDB基本操作
查看>>
【移动开发】WIFI热点通信(二)
查看>>
C#多线程编程实例 螺纹与窗口交互
查看>>
ByteBuffer用法小结
查看>>
使用linux mysql客户端建立表时遇到格式解析的问题
查看>>
find the mincost route(最小环,最短路,floyd)
查看>>
什么是自主开发项目的限度就是猿?
查看>>
TCP 的那些事儿(上)
查看>>
Discuz!NT3.6与网站整合(操作用户信息)解决方案
查看>>
【今日推荐】10大流行的 Metro UI 风格的 Bootstrap 主题和模板
查看>>
Swift - 实现拨打电话
查看>>
在线代码编辑、保存与运行网址推荐
查看>>
博客园添加访问人数统计
查看>>
Yii2 RBAC 用到的表
查看>>