Answers for "Behavior Driven Development"

1

behaviour driven development

BDD is extension of TDD(test driven development)
-In BDD we are writing SCENARIOS from
End Users perspective.

BDD has 2 sides:
1- Business side: Feature files where we use 
Gherkin language to write our scenarios.
Gherkin is very similar to English. That's why
it makes everyone in the team on the same page

Also there is 
2-Implementation Side: Where we actually implement
the programming logic that automates the application.
Posted by: Guest on January-06-2021
0

Behavior Driven Development

BDD is extension of TDD(test driven development)
-In BDD we are writing SCENARIOS from
End Users perspective.

BDD has 2 sides:
1- Business side: Feature files where we use 
Gherkin language to write our scenarios.
Gherkin is very similar to English. That's why
it makes everyone in the team on the same page
Where we write scenarios in Gherkin language; 
Given, When, Then, And, But, *

Also there is 
2-Implementation Side: Where we actually implement
the programming logic that automates the application.
Step definitions is where we implement the actual code
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language