blob: 45416028f375d1e6cf7390289d3f63cbff13c9fa (
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 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);
}
}
|