summaryrefslogtreecommitdiffstats
path: root/tests/Parser/CallStatementTest.php
blob: 9e6ab2e7c5b435503905c079b63bd2ca12d8547a (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 SqlParser\Tests\Parser;

use SqlParser\Tests\TestCase;

class CallStatementTest extends TestCase
{

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

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