mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
resolved conflicts
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Components;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Component;
|
||||
use PhpMyAdmin\SqlParser\Parser;
|
||||
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
use PhpMyAdmin\SqlParser\TokensList;
|
||||
use Throwable;
|
||||
|
||||
class ComponentTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @runInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
*/
|
||||
public function testParse(): void
|
||||
{
|
||||
$this->expectExceptionMessage('Not implemented yet.');
|
||||
$this->expectException(Throwable::class);
|
||||
Component::parse(new Parser(), new TokensList());
|
||||
}
|
||||
|
||||
public function testBuild(): void
|
||||
{
|
||||
$this->expectExceptionMessage('Not implemented yet.');
|
||||
$this->expectException(Throwable::class);
|
||||
Component::build(null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user