Your own media center
- GitHub project at https://github.com/Strikesoft/ownMc
- Released under the MIT license
- Authored by Johann-S
Behat allows for Behavior Driven Development PHP integration. Feature files are located in the /features/ folder and step definitions are located in the FeatureContext.php file. Each new feature developed must be covered by a BDD feature file with the following beginning-of-file structure:
Feature: Feature Name In order to ... As ... I need ...
And the following scenario structure:
Scenario: FeatureName - Action - ExpectedResult Given ... When ...
Then ...