1 | <?php |
||
15 | class FullTestResult extends TestResultWithMessage implements PrintableTestResultInterface, FunctionNameInterface, FailureMessageInterface, StackTraceInterface |
||
16 | { |
||
17 | /** @var TraceStep[] */ |
||
18 | private $trace; |
||
19 | |||
20 | /** |
||
21 | * FullTestResult constructor. |
||
22 | * @param string $functionName |
||
23 | * @param string $failureMessage |
||
24 | */ |
||
25 | public function __construct(string $functionName, string $failureMessage) |
||
30 | |||
31 | /** |
||
32 | * @return TraceStep[] |
||
33 | */ |
||
34 | public function getTrace(): array |
||
38 | |||
39 | public function addTraceStep(TraceStep $traceStep) |
||
43 | } |
||
44 |