ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Twig_Tests_Node_Expression_NameTest Class Reference
+ Inheritance diagram for Twig_Tests_Node_Expression_NameTest:
+ Collaboration diagram for Twig_Tests_Node_Expression_NameTest:

Public Member Functions

 testConstructor ()
 
 getTests ()
 
- Public Member Functions inherited from Twig_Test_NodeTestCase
 getTests ()
 
 testCompile ($node, $source, $environment=null, $isPattern=false)
 @dataProvider getTests More...
 
 assertNodeCompilation ($source, Twig_Node $node, Twig_Environment $environment=null, $isPattern=false)
 

Additional Inherited Members

- Protected Member Functions inherited from Twig_Test_NodeTestCase
 getCompiler (Twig_Environment $environment=null)
 
 getEnvironment ()
 
 getVariableGetter ($name, $line=false)
 
 getAttributeGetter ()
 

Detailed Description

Definition at line 12 of file NameTest.php.

Member Function Documentation

◆ getTests()

Twig_Tests_Node_Expression_NameTest::getTests ( )

Reimplemented from Twig_Test_NodeTestCase.

Definition at line 21 of file NameTest.php.

22 {
23 $node = new Twig_Node_Expression_Name('foo', 1);
24 $context = new Twig_Node_Expression_Name('_context', 1);
25
26 $env = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock(), array('strict_variables' => true));
27 $env1 = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock(), array('strict_variables' => false));
28
29 if (PHP_VERSION_ID >= 70000) {
30 $output = '($context["foo"] ?? $this->getContext($context, "foo"))';
31 } elseif (PHP_VERSION_ID >= 50400) {
32 $output = '(isset($context["foo"]) ? $context["foo"] : $this->getContext($context, "foo"))';
33 } else {
34 $output = '$this->getContext($context, "foo")';
35 }
36
37 return array(
38 array($node, "// line 1\n".$output, $env),
39 array($node, $this->getVariableGetter('foo', 1), $env1),
40 array($context, "// line 1\n\$context"),
41 );
42 }
$env
Stores the Twig configuration.
Definition: Environment.php:18
getVariableGetter($name, $line=false)
$context
Definition: webdav.php:25

References $context, $env, Sabre\VObject\$output, and Twig_Test_NodeTestCase\getVariableGetter().

+ Here is the call graph for this function:

◆ testConstructor()

Twig_Tests_Node_Expression_NameTest::testConstructor ( )

Definition at line 14 of file NameTest.php.

15 {
16 $node = new Twig_Node_Expression_Name('foo', 1);
17
18 $this->assertEquals('foo', $node->getAttribute('name'));
19 }

The documentation for this class was generated from the following file: