| 1 | <?php |
||
| 12 | class DumbTestResultContainer implements TestFilenameBearerInterface |
||
| 13 | { |
||
| 14 | /** @var TestResultFormat */ |
||
| 15 | protected $testResultFormat; |
||
| 16 | |||
| 17 | /** @var string[] */ |
||
| 18 | protected $filenames; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * DumbTestResultContainer constructor. |
||
| 22 | * @param TestResultFormat $testResultFormat |
||
| 23 | */ |
||
| 24 | public function __construct(TestResultFormat $testResultFormat) |
||
| 29 | |||
| 30 | public function addProcessToFilenames(ProcessWithResultsInterface $process) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return TestResultFormat |
||
| 38 | */ |
||
| 39 | public function getTestResultFormat() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string[] |
||
| 46 | */ |
||
| 47 | public function getFileNames() |
||
| 51 | } |
||
| 52 |