| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct(array $settings, string $name) |
||
| 26 | { |
||
| 27 | parent::__construct('Unit', 'test.unit'); |
||
| 28 | |||
| 29 | $this->settings = $settings; |
||
| 30 | $this->name = $name; |
||
| 31 | |||
| 32 | $this->settings['namespace'] = $this->getNamespaceForTest(); |
||
| 33 | $this->settings['name'] = $this->getShortClassName($this->name); |
||
| 34 | $this->settings['baseClassShort'] = $this->getShortClassName($this->settings['baseClass']); |
||
| 35 | } |
||
| 36 | |||
| 37 | } |