Behavior-Driven Development (BDD) este o abordare care descrie comportamentul software-ului în limbaj simplu, structurat (Given-When-Then) înțeles de către atât persoane tehnice cât și non-tehnice — bridging communication între dezvoltatori, testatori și stakeholderi de business, cu teste derivate din aceste descrieri.
Ce este 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.
