summaryrefslogtreecommitdiffstats
path: root/tests/Parser/InsertStatementTest.php
blob: 80f2faa7947f4ff18db632ada91f3cb9036ed6f7 (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 InsertStatementTest extends TestCase
{

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

    public function testInsertProvider()
    {
        return array(
            array('parser/parseInsert'),
        );
    }
}