remove unused code

This commit is contained in:
Sarah Hoffmann
2021-02-17 22:25:23 +01:00
parent 101a1f895d
commit 153dbb71b8
5 changed files with 0 additions and 84 deletions

View File

@@ -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'));