Go\Aop\Pointcut\PointcutParserTest::testParsingExpression PHP 메소드

testParsingExpression() 공개 메소드

Tests parsing
public testParsingExpression ( $pointcutExpression )
    public function testParsingExpression($pointcutExpression)
    {
        $stream = $this->lexer->lex($pointcutExpression);
        $result = $this->parser->parse($stream);
        $this->assertNotNull($result);
    }