2019-05-26 20:50:03 +01:00
|
|
|
# behat
|
|
|
|
|
|
|
|
> A PHP framework for Behaviour-Driven Development.
|
|
|
|
> More information: <https://behat.org>.
|
|
|
|
|
2022-06-27 12:23:12 +02:00
|
|
|
- Initialize a new Behat project:
|
2019-05-26 20:50:03 +01:00
|
|
|
|
|
|
|
`behat --init`
|
|
|
|
|
|
|
|
- Run all tests:
|
|
|
|
|
|
|
|
`behat`
|
|
|
|
|
|
|
|
- Run all tests from the specified suite:
|
|
|
|
|
|
|
|
`behat --suite={{suite_name}}`
|
|
|
|
|
|
|
|
- Run tests with a specific output formatter:
|
|
|
|
|
|
|
|
`behat --format {{pretty|progress}}`
|
|
|
|
|
|
|
|
- Run tests and output results to a file:
|
|
|
|
|
|
|
|
`behat --out {{path/to/file}}`
|
|
|
|
|
2024-01-31 00:55:19 -03:00
|
|
|
- List the definitions in your test suites:
|
2019-05-26 20:50:03 +01:00
|
|
|
|
|
|
|
`behat --definitions`
|