You are here

public function Twig_Tests_ExpressionParserTest::testStringExpression in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php \Twig_Tests_ExpressionParserTest::testStringExpression()

@dataProvider getTestsForString

File

vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php, line 162

Class

Twig_Tests_ExpressionParserTest

Code

public function testStringExpression($template, $expected) {
  $env = new Twig_Environment($this
    ->getMock('Twig_LoaderInterface'), array(
    'cache' => false,
    'autoescape' => false,
    'optimizations' => 0,
  ));
  $stream = $env
    ->tokenize($template, 'index');
  $parser = new Twig_Parser($env);
  $this
    ->assertEquals($expected, $parser
    ->parse($stream)
    ->getNode('body')
    ->getNode(0)
    ->getNode('expr'));
}