File: D:/HostingSpaces/zipwire/zipwire.nl/vendor/teamtnt/tntsearch/tests/indexer/TNTGeoIndexerTest.php
<?php
use TeamTNT\TNTSearch\Indexer\TNTIndexer;
use TeamTNT\TNTSearch\Indexer\TNTGeoIndexer;
class TNTGeoIndexerTest extends PHPUnit_Framework_TestCase
{
protected $indexName = "cities-geo.index";
protected $config = [
'driver' => 'sqlite',
'database' => __DIR__ . '/../_files/cities.sqlite',
'host' => 'localhost',
'username' => 'testUser',
'password' => 'testPass',
'storage' => __DIR__ . '/../_files/',
];
public function testGeoIndexCreation()
{
$geoIndex = new TNTGeoIndexer;
$geoIndex->disableOutput = true;
$geoIndex->loadConfig($this->config);
$geoIndex->createIndex($this->indexName);
$geoIndex->query('SELECT id, longitude, latitude FROM cities;');
$geoIndex->run();
}
}