phpmyadmin/tests/classes/Import/AjaxTest.php
Maurício Meneghini Fauth 1d1c55e250
Move test directory to tests
- Related to #18512

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-11-30 10:47:42 -03:00

19 lines
348 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Import;
use PhpMyAdmin\Import\Ajax;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
#[CoversClass(Ajax::class)]
class AjaxTest extends TestCase
{
public function testNopluginCheck(): void
{
$this->assertTrue(Ajax::nopluginCheck());
}
}