Behavior-Driven Development (BDD) je přístup, který popisuje chování software v jednoduché, strukturované řeči (Given-When-Then) srozumitelné jak technickým, tak netechnickým osobám — propojuje komunikaci mezi vývojáři, testery a obchodními stakeholdery, přičemž testy vycházejí z těchto popisů.
Co je BDD
BDD focuses on describing BEHAVIOR in business-readable language:
→ write SCENARIOS in a structured natural-language format (Gherkin):
GIVEN some initial context
WHEN an action/event happens
THEN an expected outcome occurs
→ these scenarios are both DOCUMENTATION and executable TESTS
→ Bridges devs, QA, and BUSINESS stakeholders with a shared, readable language.
