summaryrefslogtreecommitdiffstats
path: root/tests/Parser/DropStatementTest.php
blob: 04643672901c1bb974b2003349df63f818354800 (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

namespace PhpMyAdmin\SqlParser\Tests\Parser;

use PhpMyAdmin\SqlParser\Tests\TestCase;

class DropStatementTest extends TestCase
{
    /**
     * @dataProvider dropProvider
     *
     * @param mixed $test
     */
    public function testDrop($test)
    {
        $this->runParserTest($test);
    }

    public function dropProvider()
    {
        return [
            ['parser/parseDrop'],
            ['parser/parseDrop2'],
        ];
    }
}