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

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

Member Function Documentation

◆ getTests()

Twig_Tests_Node_AutoEscapeTest::getTests ( )

Reimplemented from Twig_Test_NodeTestCase.

Definition at line 23 of file AutoEscapeTest.php.

24 {
25 $body = new Twig_Node(array(new Twig_Node_Text('foo', 1)));
26 $node = new Twig_Node_AutoEscape(true, $body, 1);
27
28 return array(
29 array($node, "// line 1\necho \"foo\";"),
30 );
31 }
Represents an autoescape node.
Definition: AutoEscape.php:24
Represents a text node.
Definition: Text.php:19
Represents a node in the AST.
Definition: Node.php:19

◆ testConstructor()

Twig_Tests_Node_AutoEscapeTest::testConstructor ( )

Definition at line 14 of file AutoEscapeTest.php.

15 {
16 $body = new Twig_Node(array(new Twig_Node_Text('foo', 1)));
17 $node = new Twig_Node_AutoEscape(true, $body, 1);
18
19 $this->assertEquals($body, $node->getNode('body'));
20 $this->assertTrue($node->getAttribute('value'));
21 }

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