phpmyadmin/test/classes/Navigation/Nodes/NodeViewTest.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

53 lines
1.1 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Tests for PhpMyAdmin\Navigation\Nodes\NodeView 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\NodeView class
*
* @package PhpMyAdmin-test
*/
class NodeViewTest extends PmaTestCase
{
/**
* SetUp for test cases
*
* @return void
*/
protected function setUp(): void
{
$GLOBALS['server'] = 0;
}
/**
* Test for __construct
*
* @return void
*/
public function testConstructor()
{
$parent = NodeFactory::getInstance('NodeView');
$this->assertArrayHasKey(
'text',
$parent->links
);
$this->assertStringContainsString(
'sql.php',
$parent->links['text']
);
$this->assertStringContainsString('b_props', $parent->icon);
$this->assertStringContainsString('view', $parent->classes);
}
}