summaryrefslogtreecommitdiffstats
path: root/tests/Components/ExpressionArrayTest.php
blob: ea772e3a55c86d5978376a1048528613de4918b6 (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
<?php

namespace SqlParser\Tests\Components;

use SqlParser\Parser;
use SqlParser\Components\ExpressionArray;

use SqlParser\Tests\TestCase;

class ExpressionArrayTest extends TestCase
{

    public function testParse()
    {
        $component = ExpressionArray::parse(
            new Parser(),
            $this->getTokensList('(expr)'),
            array(
                'noBrackets' => true,
            )
        );
        $this->assertEquals(array(), $component);
    }
}