blob: 868616035ec59177330998a82c9fd7d7e8018957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Component;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
use PhpMyAdmin\SqlParser\TokensList;
class ComponentTest extends TestCase
{
/**
* @expectedException \Exception
* @expectedExceptionMessage Not implemented yet.
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testParse()
{
Component::parse(new Parser(), new TokensList());
}
/**
* @expectedException \Exception
* @expectedExceptionMessage Not implemented yet.
*/
public function testBuild()
{
Component::build(null);
}
}
|