phpmyadmin/test/classes/Import/AjaxTest.php
Maurício Meneghini Fauth 3f2c53ef1d
Replace PHPUnit annotations with attributes
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-06-07 11:44:01 -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());
}
}