Files
tldr/pages/common/phpspec.md
T
c20587ae23 *: improve more info links and add option placeholders part 3 (#19560)
* batch1

* batch

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

* Update pages/common/locust.md

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>

---------

Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com>
Co-authored-by: Sahil Afrid Farookhi <msafarookhi@gmail.com>
2025-11-24 16:45:14 -06:00

721 B

phpspec

A Behaviour Driven Development tool for PHP. More information: https://phpspec.net/en/stable/cookbook/console.html.

  • 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:

phpspec run {{[-c|--config]}} {{path/to/configuration_file}}

  • Run specifications using a specific bootstrap file:

phpspec run {{[-b|--bootstrap]}} {{path/to/bootstrap_file}}

  • Disable code generation prompts:

phpspec run --no-code-generation

  • Enable fake return values:

phpspec run --fake