Skip to main content

BDD vs Gherkin vs TDD

This table highlights the fundamental aspects of BDD, Gherkin, and TDD, their purposes, the stakeholders they involve, and how they are typically used in the software development lifecycle.

FeatureBDD (Behavior-Driven Development)GherkinTDD (Test-Driven Development)
CategorySoftware Development MethodologyDomain Specific Language (DSL)Software Development Methodology
Primary FocusCollaboration between technical and non-technical stakeholdersWriting scenarios in human-readable formatWriting tests before code
LanguageUses domain-specific language indirectly through tools like CucumberStructured, English-like languageAny programming language used for development
PurposeEnhance understanding across team members, drive development through behaviorDescribe software behavior in understandable termsEnsure code meets the specified requirements first
Stakeholders InvolvedDevelopers, Testers, Business Analysts, Product OwnersDevelopers, Testers, Business AnalystsDevelopers, sometimes Testers
OutputExecutable specifications, living documentationScenarios that guide development and testingUnit tests, software design
WorkflowDefine behavior in scenarios -> Implement functionality -> RefactorUsed within BDD as a format for writing scenariosWrite a test -> Make it pass -> Refactor
Tool ExamplesCucumber, SpecFlow, BehaveCucumber (interprets Gherkin), SpecFlowJUnit, NUnit, xUnit

BDD (Behavior-Driven Development) Example

In BDD, behavior is described in a format that is understandable to all stakeholders. Here's an example of how a feature might be described:

Feature: User login

Scenario: Successful login with correct credentials

Given a user has navigated to the login page
When the user enters their correct username and password
And the user clicks on the login button
Then the user is taken to the dashboard page

This scenario is then implemented by developers and automated by testers using tools that support BDD, such as Cucumber or SpecFlow.

Gherkin Example

Gherkin is the language used to write the scenarios in BDD. The above BDD example is actually written in Gherkin syntax. Here's a brief snippet:

Feature: User Login
As a registered user
I want to log in with my credentials
So that I can access my dashboard

Scenario: Successful login with correct credentials
Given I am on the login page
When I enter my correct username and password
And I click the login button
Then I should be redirected to my dashboard

Gherkin focuses on the "Given-When-Then" syntax to describe preconditions, actions, and expected outcomes.

TDD (Test-Driven Development) Example

TDD involves writing a test before writing the code that makes the test pass. Here's a simplified example in C# using NUnit for a function that adds two numbers:

  1. Write the Test First:
[Test]
public void Should_AddTwoNumbers_Correctly()
{
// Arrange
var calculator = new Calculator();

// Act
var result = calculator.Add(2, 3);

// Assert
Assert.AreEqual(5, result);
}
  1. Run the Test (it fails because Calculator.Add doesn't exist yet).
  2. Write the Minimal Code to Pass the Test:
public class Calculator
{
public int Add(int a, int b)
{
return a + b;
}
}
  1. Refactor both test and code, if necessary, and re-run the test to ensure it still passes.
Every Bit of Support Helps!

If you have enjoyed this post, please consider buying me a coffee ☕ to help me keep writing!