Backports #18907 to QA_5_2. This makes merging QA_5_2 into master easier. Changes done using Rector. - #18907 Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
30 lines
616 B
PHP
30 lines
616 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\Profiling;
|
|
use PhpMyAdmin\Utils\SessionCache;
|
|
|
|
/**
|
|
* @covers \PhpMyAdmin\Profiling
|
|
*/
|
|
class ProfilingTest extends AbstractTestCase
|
|
{
|
|
public function testIsSupported(): void
|
|
{
|
|
global $dbi, $server;
|
|
|
|
$server = 1;
|
|
|
|
SessionCache::set('profiling_supported', true);
|
|
$condition = Profiling::isSupported($dbi);
|
|
self::assertTrue($condition);
|
|
|
|
SessionCache::set('profiling_supported', false);
|
|
$condition = Profiling::isSupported($dbi);
|
|
self::assertFalse($condition);
|
|
}
|
|
}
|