| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class Sql extends \SimpleSAML\Module\Monitor\TestCaseFactory |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | private $host = '<< unset >>'; |
||
| 13 | |||
| 14 | |||
| 15 | /** |
||
| 16 | * @param \SimpleSAML\Module\Monitor\TestData $testData |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | protected function initialize(TestData $testData): void |
||
| 21 | { |
||
| 22 | $this->host = $testData->getInputItem('host'); |
||
| 23 | parent::initialize($testData); |
||
| 24 | } |
||
| 25 | |||
| 26 | |||
| 27 | /** |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function invokeTest(): void |
||
| 44 | } |
||
| 45 | } |
||
| 46 |