- Test-Driven Machine Learning
- Justin Bozonier
- 391字
- 2021-07-30 10:20:00
Behavior-driven development
BDD is the addition of business concerns to the technical concerns more typical of TDD. This came about as people became more experienced with TDD. They started noticing some patterns in the challenges that they were facing. One especially influential person, Dan North, proposed some specific language and structure to ease some of these issues. The following are some of the issues he noticed:
- People had a hard time understanding what they should test next.
- Deciding what to name a test could be difficult.
- How much to test in a single test always seemed arbitrary.
Now that we have some context, we can define what exactly BDD is. Simply put, it's about writing our tests in such a way that they will tell us the kind of behavior change they affect. A good litmus test might be asking oneself if the test you are writing would be worth explaining to a business stakeholder. How this solves the previous problem may not be completely obvious, but it may help to illustrate what this looks like in practice. It follows a structure of "Given, When, Then". Committing to this style completely can require specific frameworks or a lot of testing ceremony. As a result, I loosely follow this in my tests, as you will see soon. Here's a concrete example of a test description written in this style: "Given an empty dataset when the classifier is trained, it should throw an invalid operation exception".
This sentence probably seems like a small enough unit of work to tackle, but notice that it's also a piece of work that any business user who is familiar with the domain that you're working in, would understand and have an opinion on.
You can read more about Dan North's point of view in this article on his website at http://dannorth.net/introducing-bdd/.
The BDD adherents tend to use specialized tools to make the language and test result reports be as accessible to business stakeholders as possible. In my experience and from my discussions with others, this extra elegance is typically used so little that it doesn't seem worthwhile. The approach you will learn in this book will take a simplified first approach to make it as easy as possible for someone with zero background to get up to speed.
With this in mind, let's work through an example.
- JavaScript前端開發模塊化教程
- 精通JavaScript+jQuery:100%動態網頁設計密碼
- 數據庫系統教程(第2版)
- C/C++算法從菜鳥到達人
- Java Web程序設計
- Mastering C# Concurrency
- 深入淺出Serverless:技術原理與應用實踐
- Spring Boot企業級項目開發實戰
- OpenCV 4計算機視覺項目實戰(原書第2版)
- Hands-On Neural Network Programming with C#
- C++編程兵書
- Learning Splunk Web Framework
- Mastering Embedded Linux Programming
- TypeScript High Performance
- 移動智能系統測試原理與實踐