ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Twig_Tests_Node_PrintTest Class Reference
+ Inheritance diagram for Twig_Tests_Node_PrintTest:
+ Collaboration diagram for Twig_Tests_Node_PrintTest:

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 PrintTest.php.

Member Function Documentation

◆ getTests()

Twig_Tests_Node_PrintTest::getTests ( )

Definition at line 22 of file PrintTest.php.

References array.

23  {
24  $tests = array();
25  $tests[] = array(new Twig_Node_Print(new Twig_Node_Expression_Constant('foo', 1), 1), "// line 1\necho \"foo\";");
26 
27  return $tests;
28  }
Represents a node that outputs an expression.
Definition: Print.php:18
Create styles array
The data for the language used.

◆ testConstructor()

Twig_Tests_Node_PrintTest::testConstructor ( )

Definition at line 14 of file PrintTest.php.

15  {
16  $expr = new Twig_Node_Expression_Constant('foo', 1);
17  $node = new Twig_Node_Print($expr, 1);
18 
19  $this->assertEquals($expr, $node->getNode('expr'));
20  }
Represents a node that outputs an expression.
Definition: Print.php:18

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