mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
27 lines
1.2 KiB
ReStructuredText
27 lines
1.2 KiB
ReStructuredText
The BDD Guide
|
|
=============
|
|
|
|
Behaviour driven development is an approach to software development process that provides software development and management teams
|
|
with shared tools and a shared process to collaborate on software development. The awesome part of BDD is its ubiquitous language,
|
|
which is used to describe the software in English-like sentences of domain specific language.
|
|
|
|
The application's behaviour is described by scenarios, and those scenarios are turned into automated test suites with tools such as Behat.
|
|
|
|
Sylius behaviours are fully covered with Behat scenarios. There are more than 1200 scenarios in the Sylius suite, and if you want
|
|
to understand some aspects of Sylius better, or are wondering how to configure something, we strongly recommend
|
|
reading them. They can be found in the ``features/`` directory of the Sylius/Sylius repository.
|
|
|
|
We use `FriendsOfBehat/SymfonyExtension`_ to integrate Behat with Symfony.
|
|
|
|
.. toctree::
|
|
:hidden:
|
|
|
|
basic-usage
|
|
how-to-add-new-context
|
|
how-to-add-new-page
|
|
how-to-define-new-suite
|
|
how-to-use-transformers
|
|
|
|
.. include:: /bdd/map.rst.inc
|
|
|
|
.. _FriendsOfBehat/SymfonyExtension: https://github.com/FriendsOfBehat/SymfonyExtension
|