Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function testConfigureServer() |
||
16 | { |
||
17 | $config = [ |
||
18 | 'host' => 'localhost', |
||
19 | 'port' => 1234, |
||
20 | 'indexstore' => [ |
||
21 | 'mode' => 'post' |
||
22 | ] |
||
23 | ]; |
||
24 | Solr::configure_server($config); |
||
25 | |||
26 | Debug::dump(SolrCoreService::config()->get('config')); |
||
27 | Debug::dump(SolrCoreService::config()->get('mode')); |
||
28 | $this->assertEquals(1, SolrCoreService::config()->get('cpucores')); |
||
29 | } |
||
30 | } |