mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
remove unused code
This commit is contained in:
@@ -159,19 +159,7 @@ class DBTest extends \PHPUnit\Framework\TestCase
|
||||
|
||||
# Tables, Indices
|
||||
{
|
||||
$this->assertEmpty($oDB->getListOfTables());
|
||||
$oDB->exec('CREATE TABLE table1 (id integer, city varchar, country varchar)');
|
||||
$oDB->exec('CREATE TABLE table2 (id integer, city varchar, country varchar)');
|
||||
$this->assertEquals(
|
||||
array('table1', 'table2'),
|
||||
$oDB->getListOfTables()
|
||||
);
|
||||
$this->assertTrue($oDB->deleteTable('table2'));
|
||||
$this->assertTrue($oDB->deleteTable('table99'));
|
||||
$this->assertEquals(
|
||||
array('table1'),
|
||||
$oDB->getListOfTables()
|
||||
);
|
||||
|
||||
$this->assertTrue($oDB->tableExists('table1'));
|
||||
$this->assertFalse($oDB->tableExists('table99'));
|
||||
|
||||
Reference in New Issue
Block a user