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