You are here

IfTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/Node/IfTest.php

File

vendor/twig/twig/test/Twig/Tests/Node/IfTest.php
View source
<?php

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
class Twig_Tests_Node_IfTest extends Twig_Test_NodeTestCase {
  public function testConstructor() {
    $t = new Twig_Node(array(
      new Twig_Node_Expression_Constant(true, 1),
      new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
    ), array(), 1);
    $else = null;
    $node = new Twig_Node_If($t, $else, 1);
    $this
      ->assertEquals($t, $node
      ->getNode('tests'));
    $this
      ->assertNull($node
      ->getNode('else'));
    $else = new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1);
    $node = new Twig_Node_If($t, $else, 1);
    $this
      ->assertEquals($else, $node
      ->getNode('else'));
  }
  public function getTests() {
    $tests = array();
    $t = new Twig_Node(array(
      new Twig_Node_Expression_Constant(true, 1),
      new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
    ), array(), 1);
    $else = null;
    $node = new Twig_Node_If($t, $else, 1);
    $tests[] = array(
      $node,
      <<<EOF
// line 1
if (true) {
    echo {<span class="php-variable">$this</span>
  -&gt;<span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
}
EOF
,
    );
    $t = new Twig_Node(array(
      new Twig_Node_Expression_Constant(true, 1),
      new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
      new Twig_Node_Expression_Constant(false, 1),
      new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1),
    ), array(), 1);
    $else = null;
    $node = new Twig_Node_If($t, $else, 1);
    $tests[] = array(
      $node,
      <<<EOF
// line 1
if (true) {
    echo {<span class="php-variable">$this</span>
  -&gt;<span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
} elseif (false) {
    echo {<span class="php-variable">$this</span>
  -&gt;<span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'bar'</span>)};
}
EOF
,
    );
    $t = new Twig_Node(array(
      new Twig_Node_Expression_Constant(true, 1),
      new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
    ), array(), 1);
    $else = new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1);
    $node = new Twig_Node_If($t, $else, 1);
    $tests[] = array(
      $node,
      <<<EOF
// line 1
if (true) {
    echo {<span class="php-variable">$this</span>
  -&gt;<span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
} else {
    echo {<span class="php-variable">$this</span>
  -&gt;<span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'bar'</span>)};
}
EOF
,
    );
    return $tests;
  }

}

Classes