class CommandTester
Eases the testing of console commands.
Methods
|
__construct(Command $command)
Constructor. |
||
| integer |
execute(array $input, array $options = array())
Executes the command. |
|
| string |
getDisplay(Boolean $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. |
|
| integer |
getStatusCode()
Gets the status code returned by the last execution of the application. |
Details
at line 35
public
__construct(Command $command)
Constructor.
at line 54
public integer
execute(array $input, array $options = array())
Executes the command.
Available options:
- interactive: Sets the input interactive flag
- decorated: Sets the output decorated flag
- verbosity: Sets the output verbosity flag
at line 79
public string
getDisplay(Boolean $normalize = false)
Gets the display returned by the last execution of the command.
at line 97
public InputInterface
getInput()
Gets the input instance used by the last execution of the command.
at line 107
public OutputInterface
getOutput()
Gets the output instance used by the last execution of the command.
at line 117
public integer
getStatusCode()
Gets the status code returned by the last execution of the application.