snippetbashTip
phpspec — A Behaviour Driven Development tool for PHP. More information: <https://phpspec.net/en/stable/cookbo
Viewed 0 times
drivencommandphpspecbehaviourdevelopmentclitoolfor
Problem
How to use the
phpspec command: A Behaviour Driven Development tool for PHP. More information: <https://phpspec.net/en/stable/cookbook/console.html>.Solution
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 runRun 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-generationEnable fake return values:
phpspec run --fakeCode Snippets
Create a specification for a class
phpspec describe {{class_name}}Run all specifications in the "spec" directory
phpspec runRun 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}}Context
tldr-pages: common/phpspec
Revisions (0)
No revisions yet.