blob: 9a1c070610e9b1abec4dbe793983de34dceee2f9 (
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
32
|
<?php
namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class BugsTest extends TestCase
{
/**
* @dataProvider testBugProvider
*
* @param mixed $test
*/
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'),
);
}
}
|