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

namespace PhpMyAdmin\SqlParser\Tests\Parser;

use PhpMyAdmin\SqlParser\Tests\TestCase;

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

    public function testCallProvider()
    {
        return array(
            array('parser/parseCall'),
            array('parser/parseCall2'),
            array('parser/parseCall3'),
        );
    }
}