summaryrefslogtreecommitdiffstats
path: root/tests/parser/RestoreStatementTest.php
blob: 28db6fe3378364d6763d25c23ea924167f4c1a29 (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 RestoreStatementTest extends TestCase
{

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

    public function testRestoreProvider()
    {
        return array(
            array('parseRestore'),
        );
    }
}