ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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)
 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 ( )

Definition at line 21 of file NameTest.php.

References $env, $output, array, and Twig_Test_NodeTestCase\getVariableGetter().

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  }
if(!is_dir( $entity_dir)) exit("Fatal Error ([A-Za-z0-9]+)\+" &#(? foreach( $entity_files as $file) $output
$env
Create styles array
The data for the language used.
getVariableGetter($name, $line=false)
Stores the Twig configuration.
Definition: Environment.php:17
+ 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: