28 lines
472 B
PHP
28 lines
472 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
|
|
|
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
|
|
|
class ExplainStatementTest extends TestCase
|
|
{
|
|
/**
|
|
* @param mixed $test
|
|
*
|
|
* @dataProvider explainProvider
|
|
*/
|
|
public function testExplain($test): void
|
|
{
|
|
$this->runParserTest($test);
|
|
}
|
|
|
|
public function explainProvider(): array
|
|
{
|
|
return [
|
|
['parser/parseExplain'],
|
|
];
|
|
}
|
|
}
|