| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 11 | public function testCreateIndexTask(): void |
||
| 12 | { |
||
| 13 | $getVars = ['index' => 'sitetree']; |
||
| 14 | $request = new HTTPRequest('GET', '/dev/tasks/create-index', $getVars); |
||
| 15 | $task = new CreateIndexTask(); |
||
| 16 | $response = $task->run($request); |
||
| 17 | $this->assertNull($response); |
||
| 18 | } |
||
| 30 |