27 lines
468 B
PHP
27 lines
468 B
PHP
<?php
|
|
|
|
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
|
|
|
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
|
|
|
class DropStatementTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider dropProvider
|
|
*
|
|
* @param mixed $test
|
|
*/
|
|
public function testDrop($test)
|
|
{
|
|
$this->runParserTest($test);
|
|
}
|
|
|
|
public function dropProvider()
|
|
{
|
|
return array(
|
|
array('parser/parseDrop'),
|
|
array('parser/parseDrop2'),
|
|
);
|
|
}
|
|
}
|