blob: 6385a278cbb6f2e163a147839484b823966080d7 (
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
29
|
<?php
namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class SetStatementTest extends TestCase
{
/**
* @dataProvider testSetProvider
*/
public function testSet($test)
{
$this->runParserTest($test);
}
public function testSetProvider()
{
return array(
array('parser/parseSetCharset'),
array('parser/parseSetCharsetError'),
array('parser/parseSetCharacterSet'),
array('parser/parseSetCharacterSetError'),
array('parser/parseSetNames'),
array('parser/parseSetNamesError'),
array('parser/parseSetError1'),
);
}
}
|