| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function getOptions(PHPUnitConfig $config): array |
||
| 42 | { |
||
| 43 | $options = [ |
||
| 44 | '--configuration=' . $config->getFileFullPath(), |
||
| 45 | '--printer=' . LogPrinter::class, |
||
| 46 | ]; |
||
| 47 | |||
| 48 | foreach ($config->getPhpunitOptions() as $phpunitOption) { |
||
| 49 | $options[] = $this->buildPhpunitOptionString($phpunitOption); |
||
| 50 | } |
||
| 51 | |||
| 52 | return $options; |
||
| 53 | } |
||
| 54 | |||
| 70 |