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