phpmyadmin/test/classes/Navigation/Nodes/NodeIndexContainerTest.php
Maurício Meneghini Fauth 4e4e2e56fd
Refactor NodeFactory::getInstance() to use class strings
Improves type inference.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-02-15 11:46:04 -03:00

42 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Navigation\Nodes;
use PhpMyAdmin\Navigation\Nodes\NodeIndexContainer;
use PhpMyAdmin\Tests\AbstractTestCase;
/**
* @covers \PhpMyAdmin\Navigation\Nodes\NodeIndexContainer
*/
class NodeIndexContainerTest extends AbstractTestCase
{
/**
* SetUp for test cases
*/
protected function setUp(): void
{
parent::setUp();
$GLOBALS['dbi'] = $this->createDatabaseInterface();
$GLOBALS['server'] = 0;
}
/**
* Test for __construct
*/
public function testConstructor(): void
{
$parent = new NodeIndexContainer();
$this->assertIsArray($parent->links);
$this->assertEquals(
[
'text' => ['route' => '/table/structure', 'params' => ['db' => null, 'table' => null]],
'icon' => ['route' => '/table/structure', 'params' => ['db' => null, 'table' => null]],
],
$parent->links
);
$this->assertEquals('indexes', $parent->realName);
}
}