phpmyadmin/test/classes/Navigation/Nodes/NodeViewTest.php
William Desportes 89feb6ecc3
Fix setUp function not in camel case
Signed-off-by: William Desportes <williamdes@wdes.fr>
2019-10-19 21:17:06 +02:00

51 lines
1.0 KiB
PHP

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