mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 03:01:32 +00:00
resolved conflicts
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
|
||||
class DropStatementTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @dataProvider dropProvider
|
||||
*/
|
||||
public function testDrop(string $test): void
|
||||
{
|
||||
$this->runParserTest($test);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[][]
|
||||
*/
|
||||
public static function dropProvider(): array
|
||||
{
|
||||
return [
|
||||
['parser/parseDrop'],
|
||||
['parser/parseDrop2'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user