summaryrefslogtreecommitdiffstats
path: root/tests/Parser/ExplainStatement.php
blob: 6cf30591e1ca5643cddf313e9d94884cdc1f18d4 (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
<?php

namespace PhpMyAdmin\SqlParser\Tests\Parser;

use PhpMyAdmin\SqlParser\Tests\TestCase;

class ExplainStatementTest extends TestCase
{
    /**
     * @dataProvider testExplainProvider
     *
     * @param mixed $test
     */
    public function testExplain($test)
    {
        $this->runParserTest($test);
    }

    public function testExplainProvider()
    {
        return array(
            array('parser/parseExplain'),
        );
    }
}