| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function invokeTest(): void |
||
| 32 | { |
||
| 33 | $input = [ |
||
| 34 | 'path' => session_save_path(), |
||
| 35 | 'category' => 'Session storage' |
||
| 36 | ]; |
||
| 37 | $testData = new TestData($input); |
||
| 38 | |||
| 39 | $test = new TestCase\FileSystem\FreeSpace($testData); |
||
| 40 | $testResult = $test->getTestResult(); |
||
| 41 | |||
| 42 | $this->addTestResult($testResult); |
||
| 43 | $this->setTestResult($testResult); |
||
| 44 | } |
||
| 46 |