Related to https://github.com/phpmyadmin/phpmyadmin/pull/17637 Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
21 lines
391 B
PHP
21 lines
391 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\Console;
|
|
|
|
/**
|
|
* @covers \PhpMyAdmin\Console
|
|
*/
|
|
class ConsoleTest extends AbstractTestCase
|
|
{
|
|
public function testGetScripts(): void
|
|
{
|
|
$GLOBALS['dbi'] = $this->createDatabaseInterface();
|
|
$console = new Console();
|
|
$this->assertEquals(['console.js'], $console->getScripts());
|
|
}
|
|
}
|