| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function testProcess() |
||
| 31 | { |
||
| 32 | $this->job->process(); |
||
| 33 | $solrResponse = file_get_contents('http://localhost:8983/solr/TestIndex/admin/ping'); |
||
| 34 | $response = json_decode($solrResponse); |
||
| 35 | $this->assertEquals('OK', $response->status); |
||
| 36 | $this->assertEquals('10', $response->responseHeader->params->rows); |
||
| 37 | } |
||
| 38 | } |