class CommandTester
Eases the testing of console commands.
Methods
__construct(Command $command) Constructor. | ||
int | execute(array $input, array $options = array()) Executes the command. | |
string | getDisplay(bool $normalize = false) Gets the display returned by the last execution of the command. | |
InputInterface | getInput() Gets the input instance used by the last execution of the command. | |
OutputInterface | getOutput() Gets the output instance used by the last execution of the command. | |
int | getStatusCode() Gets the status code returned by the last execution of the application. |
Details
__construct(Command $command)
Constructor.
int execute(array $input, array $options = array())
Executes the command.
Available execution options:
- interactive: Sets the input interactive flag
- decorated: Sets the output decorated flag
- verbosity: Sets the output verbosity flag
string getDisplay(bool $normalize = false)
Gets the display returned by the last execution of the command.
InputInterface getInput()
Gets the input instance used by the last execution of the command.
OutputInterface getOutput()
Gets the output instance used by the last execution of the command.
int getStatusCode()
Gets the status code returned by the last execution of the application.
Please login to continue.