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>
19 lines
347 B
PHP
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());
|
|
}
|
|
}
|