blob: b2388a30a21f1a20d62a5c49fc9094b14aaed5f1 (
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
32
33
|
<?php
namespace SqlParser\Tests\Parser;
use SqlParser\Component;
use SqlParser\Parser;
use SqlParser\TokensList;
use 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);
}
}
|