blob: 4db08a2f93e518f02c41e67ae514ebfe7e1b00e9 (
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
|
<?php
namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class BugsTest extends TestCase
{
/**
* @dataProvider testBugProvider
*/
public function testBug($test)
{
$this->runParserTest($test);
}
public function testBugProvider()
{
return array(
array('bugs/gh9'),
array('bugs/gh14'),
array('bugs/gh16'),
array('bugs/pma11800'),
array('bugs/pma11836'),
array('bugs/pma11843'),
array('bugs/pma11867'),
array('bugs/pma11879'),
);
}
}
|