blob: edd71fe2d4ecb58ee19ff4dae8f4617ac44d01c7 (
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
namespace SqlParser\Tests\Parser;
use SqlParser\Tests\TestCase;
class CreateStatementTest extends TestCase
{
/**
* @dataProvider testCreateProvider
*/
public function testCreate($test)
{
$this->runParserTest($test);
}
public function testCreateProvider()
{
return array(
array('parseCreateTable'),
array('parseCreateProcedure'),
array('parseCreateProcedure2'),
array('parseCreateFunction'),
array('parseCreateFunctionErr1'),
);
}
}
|