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