2019-06-25 11:57:14 +01:00
|
|
|
# phpspec
|
|
|
|
|
|
|
|
> A Behaviour Driven Development tool for PHP.
|
|
|
|
> More information: <https://phpspec.net>.
|
|
|
|
|
|
|
|
- Create a specification for a class:
|
|
|
|
|
|
|
|
`phpspec describe {{class_name}}`
|
|
|
|
|
|
|
|
- Run all specifications in the "spec" directory:
|
|
|
|
|
|
|
|
`phpspec run`
|
|
|
|
|
|
|
|
- Run a single specification:
|
|
|
|
|
|
|
|
`phpspec run {{path/to/class_specification_file}}`
|
|
|
|
|
|
|
|
- Run specifications using a specific configuration file:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`phpspec run {{[-c|--config]}} {{path/to/configuration_file}}`
|
2019-06-25 11:57:14 +01:00
|
|
|
|
|
|
|
- Run specifications using a specific bootstrap file:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`phpspec run {{[-b|--bootstrap]}} {{path/to/bootstrap_file}}`
|
2019-06-25 11:57:14 +01:00
|
|
|
|
|
|
|
- Disable code generation prompts:
|
|
|
|
|
|
|
|
`phpspec run --no-code-generation`
|
|
|
|
|
|
|
|
- Enable fake return values:
|
|
|
|
|
|
|
|
`phpspec run --fake`
|