| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct(array $settings, string $name) |
||
| 26 | { |
||
| 27 | parent::__construct('Integration', 'cest.integration'); |
||
| 28 | |||
| 29 | $this->settings = $settings; |
||
| 30 | $this->name = $name; |
||
| 31 | |||
| 32 | $this->settings['actor'] = 'tester'; |
||
| 33 | $this->settings['actorClassShort'] = $this->getShortClassName($this->settings['actorClass']); |
||
| 34 | $this->settings['namespace'] = $this->getNamespaceForTest(); |
||
| 35 | $this->settings['name'] = $this->getShortClassName($this->name); |
||
| 36 | $this->settings['baseClassShort'] = $this->getShortClassName($this->settings['baseClass']); |
||
| 37 | } |
||
| 38 | } |