https://github.com/vikbert/bdd-for-dummy
Behavior-driven-development for dummy
https://github.com/vikbert/bdd-for-dummy
Last synced: 5 months ago
JSON representation
Behavior-driven-development for dummy
- Host: GitHub
- URL: https://github.com/vikbert/bdd-for-dummy
- Owner: vikbert
- License: mit
- Created: 2018-10-27T04:42:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T21:27:59.000Z (over 7 years ago)
- Last Synced: 2025-08-15T19:06:03.553Z (7 months ago)
- Language: PHP
- Size: 85 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BDD For Dummy from the DDD perspective
This tutorial will guide you to using BDD to start a simplistic "already known"
`Authentication` domain, then introduce you to have a short look at DDD
with tactical DDD concepts in the target `domain`.
### How to start
First, [install composer](https://getcomposer.org/download/).
After that, you can run:
```sh
$ composer install
$ yarn install ## npm install
# Open a new terminal, then
$ php -S 127.0.0.1:8010 -t public
# Open another terminal, then
$ composer test # unit test & behat test
$ composer code # code analyse
```