Test Precisely and Concretely

Kevlin Henney

IT IS IMPORTANT TO TEST for the desired, essential behavior of a unit of code, rather than for the incidental behavior of its particular implementation. But this should not be taken or mistaken as an excuse for vague tests. Tests need to be both accurate and precise.

Something of a tried, tested, and testing classic, sorting routines offer an illus- trative example. Implementing a sorting algorithm is not necessarily an every- day task for a programmer, but sorting is such a familiar idea that most people believe they know what to expect from it. This casual familiarity, however, can make it harder to see past certain assumptions.

When programmers are asked, “What would you test for?”, by far and away the most common response is something like, “The result of sorting is a sorted sequence of elements.” While this is true, it is not the whole truth. When prompted for a more precise condition, many programmers add that the result- ing sequence should be the same length as the original. Although correct, this is still not enough. For example, given the following sequence:

31415 9

The following sequence satisfies a postcondition of being sorted in non- descending order and having the same length as the original sequence:

33333 3

Although it satisfies the spec, it is also most certainly not what was meant! This example is based on an error taken from real production code (fortu- nately caught before it was released), where a simple slip of a keystroke or a momentary lapse of reason led to an elaborate mechanism for populating the whole result with the first element of the given array.

The full postcondition is that the result is sorted and that it holds a permuta- tion of the original values. This appropriately constrains the required behavior.

162 97 Things Every Programmer Should Know



That the result length is the same as the input length comes out in the wash and doesn’t need restating.

Even stating the postcondition in the way described is not enough to give you a good test. A good test should be readable. It should be comprehensible and simple enough that you can see readily that it is correct (or not). Unless you already have code lying around for checking that a sequence is sorted and that one sequence contains a permutation of values in another, it is quite likely that the test code will be more complex than the code under test. As Tony Hoare observed:

There are two ways of constructing a software design: one way is to make it so simple that there are obviously no deficiencies and the other is to make it so com- plicated that there are no obvious deficiencies.

Using concrete examples eliminates this accidental complexity and opportu- nity for accident. For example, given the following sequence:

31415 9

The result of sorting is the following:

11345 9

No other answer will do. Accept no substitutes.

Concrete examples help to illustrate general behavior in an accessible and unambiguous way. The result of adding an item to an empty collection is not simply that it is not empty: it is that the collection now has a single item, and that the single item held is the item added. Two or more items would qualify as not empty, and would also be wrong. A single item of a different value would also be wrong. The result of adding a row to a table is not simply that the table is one row bigger; it’s also that the row’s key can be used to recover the row added. And so on.

In specifying behavior, tests should not simply be accurate: they must also be precise.

最新文章

  1. jenkins无法重启tomcat的原因
  2. [C++11][数据结构]自己的双链表实现
  3. python时间时分秒与秒数的互相转换
  4. 18.中介者模式(Mediator Pattern)
  5. Unity5.x版本AssetBundle打包研究
  6. 数据结构&算法-单链表
  7. 打补丁patch 命令使用
  8. GCD的用法
  9. C#中messagebox用法
  10. 关于v$sql_bind_capture 的问题
  11. IP定位 C#
  12. Sql Server——查询(二)
  13. oracle数据库导出表结构步骤
  14. for循环查找元素怎么跳出for循环
  15. js正则学习
  16. Python基础之-----------函数
  17. telerik:RadGrid 分组自动展开
  18. 【转】4G18的低成本NA玩法
  19. Erlang tool -- recon
  20. 记一次结巴分词.net core 2.0版 nuget发布过程

热门文章

  1. 简单易学的机器学习算法——神经网络之BP神经网络
  2. Google C++ style guide——格式
  3. 蓝桥杯-- 历届试题 核桃的数量 (gcd)
  4. word2010无法显示endnote x7插件及破解endnote x7
  5. Oracle Access和filter的区别
  6. SignalR——聊天室的实现
  7. C# MVC登录判断状态
  8. 手把手教你写带登录的NodeJS爬虫+数据展示
  9. SQL Server-聚焦使用索引和查询执行计划
  10. submile 安装,汉化,插件