summaryrefslogtreecommitdiffstats
path: root/tests/Parser/CallStatementTest.php
blob: 3a71ce3a342043e413e7bc62b437bd428d2fe5d2 (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
27
28
<?php
declare(strict_types=1);

namespace PhpMyAdmin\SqlParser\Tests\Parser;

use PhpMyAdmin\SqlParser\Tests\TestCase;

class CallStatementTest extends TestCase
{
    /**
     * @param mixed $test
     *
     * @dataProvider callProvider
     */
    public function testCall($test)
    {
        $this->runParserTest($test);
    }

    public function callProvider()
    {
        return [
            ['parser/parseCall'],
            ['parser/parseCall2'],
            ['parser/parseCall3'],
        ];
    }
}