PHPSQLParser\Test\Parser\CommentsTest::testComments3 PHP Method

testComments3() public method

public testComments3 ( )
    public function testComments3()
    {
        $sql = 'SELECT a
                    FROM test -- inline comment in FROM section';
        $p = $this->parser->parse($sql);
        $expected = getExpectedValue(dirname(__FILE__), 'comment3.serialized');
        $this->assertEquals($expected, $p, 'inline comment in FROM section');
    }