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:
+31
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
|
||||
class AnalyzeStatementTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @dataProvider analyzeProvider
|
||||
*/
|
||||
public function testAnalyze(string $test): void
|
||||
{
|
||||
$this->runParserTest($test);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[][]
|
||||
*/
|
||||
public static function analyzeProvider(): array
|
||||
{
|
||||
return [
|
||||
['parser/parseAnalyzeTable'],
|
||||
['parser/parseAnalyzeTable1'],
|
||||
['parser/parseAnalyzeErr1'],
|
||||
['parser/parseAnalyzeErr2'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user