phpmyadmin/tests/unit/Import/AjaxTest.php
Maurício Meneghini Fauth 606f66b5df
Rename tests/classes to tests/unit
This directory is for unit tests only, so let's rename it to unit to be
more clear.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-02-23 13:29:07 -03:00

19 lines
347 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
{
self::assertTrue(Ajax::nopluginCheck());
}
}