phpmyadmin/test/classes/Html/MySQLDocumentationTest.php
Maurício Meneghini Fauth 206199105e Remove useless return type annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-23 13:03:29 -03:00

33 lines
961 B
PHP

<?php
/**
* Test for \PhpMyAdmin\Html\MySQLDocumentation class
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Html;
use PhpMyAdmin\Html\MySQLDocumentation;
use PhpMyAdmin\Tests\PmaTestCase;
/**
* Test for \PhpMyAdmin\Html\MySQLDocumentation class
*/
class MySQLDocumentationTest extends PmaTestCase
{
/**
* Test for \PhpMyAdmin\Html\MySQLDocumentation::showDocumentation
*
* @covers \PhpMyAdmin\Html\MySQLDocumentation::showDocumentation
*/
public function testShowDocumentation(): void
{
$GLOBALS['server'] = '99';
$GLOBALS['cfg']['ServerDefault'] = 1;
$this->assertEquals(
'<a href="./url.php?url=https%3A%2F%2Fdocs.phpmyadmin.net%2Fen%2Flatest%2Fpage.html%23anchor" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a>',
MySQLDocumentation::showDocumentation('page', 'anchor')
);
}
}