博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单元测试中的单元是啥意思?(每日一译)
阅读量:5323 次
发布时间:2019-06-14

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

 (by 

I used to think it was a method. Then I thought it coule be several methods. then I thought it might be several classes. then I realized it changes all the time.

我曾经觉得这指的是一个方法,几个方法或者几个类,我的看法一直在变化着。

It means “unit of work”.

我现在觉得单元指的是工作单元。

A unit of work is a use case in the system, that is initiated by a public method somewhere, and ends up with an end result. An end result can be one of three things:

一个工作单元是系统中的一个用例,它常常开始于一个公共的方法,结束时伴随如下三种结果:

  • A return value(if the public method is a function) or an exception return value
  • 一个返回值(如果这个公共方法是个函数的话)或者抛出一个异常。
  • A noticeable change to the state of the system under test. Noticeablemeans that the system behaves differently to an end user than it did before. For example – adding a user changes the system behavior to allow that user to login in.
  • 系统状态显而易见的的改变。显而易见要求结束后的系统表现和发生前的不同。例如,添加一个用户以让其可以登陆。
  • A call to a 3rd party system. A 3rd party system is a dependency that we do not have control over in our test. If it touches the file system, or calls the network, or uses threads, or anything that makes our test slow, or inconsistent, it is a dependency we don’t have control over.
  • 一个对第三方系统的调用。第三方系统的依赖是测试中无法控制的。例如对文件系统,对网络,对线程或者任何使得测试变慢,不一致的不可控因素的依赖。

The third case (3rd parties) is where we end up using mock objects. In all other cases, we might have stubs to break dependencies, but our asserts will be against the system’s different states, or different return values.

第三种情况我们必须使用mock对象,在其他情况下,我们可以用stub对象解除依赖,但是我们的断言也会针对系统的不用状态或者不同的返回值。

转载于:https://www.cnblogs.com/brightwang/archive/2012/06/06/2537497.html

你可能感兴趣的文章
转载 python多重继承C3算法
查看>>
【题解】 bzoj1597: [Usaco2008 Mar]土地购买 (动态规划+斜率优化)
查看>>
css文本溢出显示省略号
查看>>
git安装和简单配置
查看>>
面向对象:反射,双下方法
查看>>
鼠标悬停提示文本消息最简单的做法
查看>>
课后作业-阅读任务-阅读提问-2
查看>>
面向对象设计中private,public,protected的访问控制原则及静态代码块的初始化顺序...
查看>>
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
Awesome Adb——一份超全超详细的 ADB 用法大全
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
Android 将drawable下的图片转换成bitmap、Drawable
查看>>
介绍Win7 win8 上Java环境的配置
查看>>
移动、联通和电信,哪家的宽带好,看完你就知道该怎么选了!
查看>>
Linux设置环境变量的方法
查看>>
Atitit.进程管理常用api
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>