Remove useless test

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
This commit is contained in:
Kamil Tekiela 2024-03-18 18:45:23 +01:00
parent 46035d2d6a
commit 7464263253
2 changed files with 0 additions and 14 deletions

View File

@ -16655,11 +16655,6 @@ parameters:
count: 1
path: tests/unit/Table/TableTest.php
-
message: "#^Call to static method PHPUnit\\\\Framework\\\\Assert\\:\\:assertInstanceOf\\(\\) with 'PhpMyAdmin\\\\\\\\Table\\\\\\\\Table' and PhpMyAdmin\\\\Table\\\\Table will always evaluate to true\\.$#"
count: 1
path: tests/unit/Table/TableTest.php
-
message: "#^Cannot access offset 'SCHEMA_TABLES' on mixed\\.$#"
count: 1

View File

@ -284,15 +284,6 @@ class TableTest extends AbstractTestCase
DatabaseInterface::$instance = null;
}
/**
* Test object creating
*/
public function testCreate(): void
{
$table = new Table('table1', 'pma_test', $this->mockedDbi);
self::assertInstanceOf(Table::class, $table);
}
/**
* Test for constructor
*/