| 1 | <?php |
||
| 16 | class FullTestResult extends TestResultWithMessage implements PrintableTestResultInterface, FunctionNameInterface, FailureMessageInterface, StackTraceInterface |
||
| 17 | { |
||
| 18 | /** @var string */ |
||
| 19 | private $trace; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * FullTestResult constructor. |
||
| 23 | * @param string $functionName |
||
| 24 | * @param string $failureMessage |
||
| 25 | * @param string $trace |
||
| 26 | */ |
||
| 27 | 37 | public function __construct(string $functionName, string $failureMessage, string $trace) |
|
| 32 | |||
| 33 | 10 | public function getTrace(): string |
|
| 37 | } |
||
| 38 |