| 1 | <?php |
||
| 11 | class MuteTestResult extends NullTestResult implements PrintableTestResultInterface |
||
| 12 | { |
||
| 13 | /** @var TestResultFormat */ |
||
| 14 | private $testResultFormat; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * AbstractTestResult constructor. |
||
| 18 | */ |
||
| 19 | 11 | public function __construct() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param TestResultFormat $testResultFormat |
||
| 26 | */ |
||
| 27 | 31 | public function setTestResultFormat(TestResultFormat $testResultFormat) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return TestResultFormat |
||
| 34 | */ |
||
| 35 | 24 | public function getTestResultFormat() |
|
| 39 | } |
||
| 40 |