Behavior Driven Development
From Wikipedia, the free encyclopedia
This article includes a list of references or external links, but its sources remain unclear because it lacks inline citations. Please improve this article by introducing more precise citations where appropriate. (February 2008) |
Behavior Driven Development (or BDD) is an Agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. It was originally conceived in 2003 by Dan North [1] as a response to Test Driven Development, and has evolved over the last few years.
The focus of BDD is the language and interactions used in the process of software development. Behavior-driven developers use their native language in combination with the ubiquitous language of Domain Driven Design to describe the purpose and benefit of their code. This allows the developers to focus on why the code should be created, rather than the technical details, and minimizes translation between the technical language in which the code is written and the domain language spoken by the business, users, stakeholders, project management etc.
Dan North created a story-level BDD framework for Ruby called rbehave which was later integrated into the RSpec project. He also worked with David Chelimsky and Aslak Hellesøy and others to develop RSpec and also to write "The RSpec Book: Behaviour Driven Development with RSpec, Cucumber, and Friends". The first story-based framework in RSpec was later replaced by Cucumber mainly developed by Aslak Hellesøy.
Contents |
[edit] BDD Practices
The practices of BDD include:
- Involving stakeholders in the process through outside-in software development
- Using examples to describe the behavior of the application, or of units of code
- Automating those examples to provide quick feedback and regression testing
- In software tests, using 'should' to help clarify responsibility and allow the software's functionality to be questioned
- Test use 'ensure' to differentiate outcomes in the scope of the code in question from side-effects of other elements of code.
- Using mocks to stand-in for modules of code which have not yet been written
[edit] Outside-In
BDD is driven by Business Value; that is, the benefit to the business which accrues once the application is in production. The only way in which this benefit can be realized is through the User Interface(s) to the application, usually (but not always) a GUI.
In the same way, each piece of code, starting with the UI, can be considered a stakeholder of the other modules of code which it uses. Each element of code provides some aspect of behavior which, in collaboration with the other elements, provides the application behavior.
The first piece of production code that BDD developers implement is the UI. Developers can then benefit from quick feedback as to whether the UI looks and behaves appropriately. Through code, and using principles of good design and refactoring, developers discover collaborators of the UI, and of every unit of code thereafter. This helps them adhere to the principle of YAGNI, since each piece of production code is required either by the business, or by another piece of code already written.
[edit] Scenarios, or Application Examples
The requirements of a retail application might be, "Refunded or replaced items should be returned to stock."
In BDD, a developer or QA might clarify the requirements by breaking this down into specific examples, eg.
[edit] Scenario 1: Refunded items should be returned to stock
- Given a customer buys a black jumper
- and I have three black jumpers left in stock
- when he returns the jumper for a refund
- then I should have four black jumpers in stock
[edit] Scenario 2: Replaced items should be returned to stock
- Given that a customer buys a blue garment
- and I have two blue garments in stock
- and three black garments in stock.
- When he returns the garment for a replacement in black,
- Then I should have three blue garments in stock
- and two black garments in stock
Each scenario is an exemplar, designed to illustrate a specific aspect of behavior of the application.
When discussing the scenarios, participants question whether the outcomes described always result from those events occurring in the given context. This can help to uncover further scenarios which clarify the requirements. For instance, a domain expert noticing that refunded items are not always returned to stock might reword the requirements as "Refunded or replaced items should be returned to stock unless faulty."
This in turn helps participants to pin down the scope of requirements, which leads to better estimates of how long those requirements will take to implement.
The words Given, When and Then are often used to help drive out the scenarios, but are not mandated.
These scenarios can also be automated, if an appropriate tool exists to allow automation at the UI level. If no such tool exists then it may be possible to automate at the next level in, ie: if an MVC design pattern has been used, the level of the Controller.
[edit] Unit-level Examples and Behavior
The same principles of examples, using contexts, events and outcomes can be used to drive development at a unit level. For instance, the following examples describe an aspect of behavior of a list:
Example 1: New lists are empty
- Given a new list
- Then the list should be empty.
Example 2: Lists with things in them are not empty.
- Given a new list
- When we add an object
- Then the list should not be empty.
Both these examples are required to describe the behavior of the
list.isEmpty()
method, and to derive the benefit of the method. These examples can be automated using TDD frameworks. In BDD these examples are usually encapsulated in a single test method, with the name of the method being a complete description of the behavior.
For instance, using Java and JUnit 4, the above examples might become:
public class ListTest { @Test public void shouldKnowWhetherItIsEmpty() { List list1 = new List(); assertTrue(list1.isEmpty()); List list2 = new List(); list2.add(new Object()); assertFalse(list2.isEmpty()); } }
Sometimes the difference between the context, events and outcomes may be made more explicit. For instance:
public class WindowControlBehavior { @Test public void shouldCloseWindows() { // Given WindowControl control = new WindowControl("My AFrame"); AFrame frame = new AFrame(); // When control.closeWindow(); // Then ensureThat(!frame.isShowing()); } }
However the example is phrased, the effect should be that of describing the behavior of the code in question. For instance, from the examples above one can derive:
- List should know when it is empty
- WindowControl should close windows
The description is useful if the test fails, and provides documentation of the code's behavior to anyone interested in Lists or WindowControls. Once the examples have been written they are then run and the code implemented to make them work in the same way as TDD.
[edit] Using Mocks
Because of the outside-in nature of BDD, developers will often find themselves trying to use units of code which don't yet exist. When this happens, an object which is simpler than the desired code, and provides the same interface but predictable behaviour, can be injected into the code which needs it.
These objects can either be created by hand, or created using a mocking framework such as Moq, NMock, Rhino Mocks, JMock or EasyMock.
BDD proponents claim that the use of "should" and "ensureThat" in BDD examples encourages developers to question whether the responsibilities they're assigning to their classes are appropriate, or whether they can be delegated or moved to another class entirely. Questioning responsibilities in this way, and using mocks to fulfill the required roles of collaborating classes, encourages the use of Role-based Interfaces. It also helps to keep the classes small and loosely coupled.
[edit] References
[edit] External links
- Dan North's article introducing BDD
- Introduction to Behavior Driven Development
- Behavior Driven Development Using Ruby (Part 1)
- Behavior-Driven Development Using Ruby (Part 2)
- In pursuit of code quality: Adventures in behavior-driven development by Andrew Glover
- Behavior Driven Database Development by Pramodkumar Sadalage
- The RSpec Book: Behaviour Driven Development with RSpec, Cucumber, and Friends
[edit] Tools
- ASSpec - ActionScript 3
- BDoc - Extracting documentation from unit tests, supporting behaviour driven development
- BDD in Python is core module doctest
- beanSpec - Java
- cfSpec - ColdFusion
- CSpec - C
- dSpec - Delphi
- Concordion - a Java automated testing tool for BDD that uses plain English to describe behaviors.
- Cucumber - Plain text + Ruby. Works against Java, .NET, Ruby, Flex or any web application via Watir or Selenium.
- easyb - Groovy/Java
- EasySpec - Groovy, usable in Java. Developer also working on Perception a tool for doing Context/Specification reporting for many different tools.
- GSpec - Groovy
- Instinct - Java
- JBehave - Java
- JDave - Java
- JFXtras Test - JavaFX
- JSpec - JavaScript (great syntax, async support, many matchers, tiny framework, and more)
- JSSpec - JavaScript
- NBehave - .Net
- NSpec - .Net
- NSpecify - .Net
- NUnit - Another implementation of BDD framework in .Net with focus on specification testing
- PHPSpec - PHP
- RSpec - Ruby
- specs - Scala
- spec-cpp - C++
- Specter - Another implementation of BDD framework in .Net with focus on specification readability
- StoryQ - .Net 3.5, can be integrated with NUnit to provide both specification readability and testing
- tspec - Groovy (Thai syntax)