summaryrefslogtreecommitdiffstats
path: root/tests/parser/FragmentTest.php
blob: d91ccb51b658b6cc1111c82318b44265b41f6f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace SqlParser\Tests\Parser;

use SqlParser\Fragment;
use SqlParser\Parser;
use SqlParser\TokensList;

use SqlParser\Tests\TestCase;

class FragmentTest extends TestCase
{

    public function testFragment()
    {
        $this->assertEquals(null, Fragment::parse(new Parser(), new TokensList()));
    }
}