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