File: /home/xedaptot/360.naniguide.com/services/vendor/phpmyadmin/sql-parser/tests/Misc/BugsTest.php
<?php
declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Tests\Misc;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class BugsTest extends TestCase
{
/**
* @param mixed $test
*
* @dataProvider bugProvider
*/
public function testBug($test): void
{
$this->runParserTest($test);
}
public function bugProvider(): array
{
return [
['bugs/gh9'],
['bugs/gh14'],
['bugs/gh16'],
['bugs/gh317'],
['bugs/pma11800'],
['bugs/pma11836'],
['bugs/pma11843'],
['bugs/pma11867'],
['bugs/pma11879'],
];
}
}