phpmyadmin/test/classes/Navigation/Nodes/NodeColumnTest.php
Maurício Meneghini Fauth 92cc67fbf7 Replace assertContains() with assertStringContainsString()
Using assertContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringContainsString() or assertStringContainsStringIgnoringCase() instead.
Using assertNotContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringNotContainsString() or assertStringNotContainsStringIgnoringCase() instead.

Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2019-02-24 16:32:28 -03:00

51 lines
1.0 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Tests for PhpMyAdmin\Navigation\Nodes\NodeColumn class
*
* @package PhpMyAdmin-test
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;
use PhpMyAdmin\Tests\PmaTestCase;
use PhpMyAdmin\Theme;
/**
* Tests for PhpMyAdmin\Navigation\Nodes\NodeColumn class
*
* @package PhpMyAdmin-test
*/
class NodeColumnTest extends PmaTestCase
{
/**
* SetUp for test cases
*
* @return void
*/
protected function setUp(): void
{
$GLOBALS['server'] = 0;
}
/**
* Test for PhpMyAdmin\Navigation\NodeFactory::getInstance
*
* @return void
*/
public function testConstructor()
{
$parent = NodeFactory::getInstance('NodeColumn');
$this->assertArrayHasKey(
'text',
$parent->links
);
$this->assertStringContainsString(
'tbl_structure.php',
$parent->links['text']
);
}
}