blob: 626051899443f0a1f00fa54a27c08405b2ea0348 (
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\TokensList;
use PhpMyAdmin\SqlParser\Tests\TestCase;
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);
}
}
|