FakeProcessResult
class FakeProcessResult implements ProcessResult (View source)
Properties
protected string | $command | The command string. |
|
protected int | $exitCode | The process exit code. |
|
protected string | $output | The process output. |
|
protected string | $errorOutput | The process error output. |
Methods
Create a new process result instance.
Normalize the given output into a string with newlines.
Get the original command executed by the process.
Create a new fake process result with the given command.
Determine if the process was successful.
Determine if the process failed.
Get the exit code of the process.
Get the standard output of the process.
Determine if the output contains the given string.
Get the error output of the process.
Determine if the error output contains the given string.
Throw an exception if the process failed.
Throw an exception if the process failed and the given condition is true.
Details
__construct(string $command = '', int $exitCode = 0, array|string $output = '', array|string $errorOutput = '')
Create a new process result instance.
protected string
normalizeOutput(array|string $output)
Normalize the given output into a string with newlines.
FakeProcessResult
withCommand(string $command)
Create a new fake process result with the given command.