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

namespace SqlParser\Tests\Parser;

use SqlParser\Tests\TestCase;

class ExplainStatementTest extends TestCase
{

    /**
     * @dataProvider testExplainProvider
     */
    public function testExplain($test)
    {
        $this->runParserTest($test);
    }

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