for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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/parseAlterTableSetAutoIncrementError'),
array('parser/parseSetNames'),
array('parser/parseSetNamesError'),
array('parser/parseSetError1'),
array('parser/parseInsertIntoSet')
);