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>
20 lines
316 B
PHP
20 lines
316 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Import;
|
|
|
|
use PhpMyAdmin\Import\Ajax;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @covers \PhpMyAdmin\Import\Ajax
|
|
*/
|
|
class AjaxTest extends TestCase
|
|
{
|
|
public function testNopluginCheck(): void
|
|
{
|
|
self::assertTrue(Ajax::nopluginCheck());
|
|
}
|
|
}
|