summaryrefslogtreecommitdiffstats
path: root/tests/Parser/ExplainStatementTest.php
blob: c00a99d2465fbc70cc864a2179850d48d5fe7268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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)
    {
        $this->runParserTest($test);
    }

    public function explainProvider()
    {
        return [
            ['parser/parseExplain'],
        ];
    }
}