public function Twig_Tests_Node_IfTest::getTests

Overrides Twig_Tests_Node_TestCase::getTests

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Node/IfTest.php, line 45

Class

Twig_Tests_Node_IfTest

Code

public function getTests() {
  $tests = array();
  $t = new Twig_Node(array(
    new Twig_Node_Expression_Constant(true, 0),
    new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 0), 0),
  ), array(), 0);
  $else = null;
  $node = new Twig_Node_If($t, $else, 0);
  $tests[] = array(
    $node,
    <<<EOF
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, 0),
    new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 0), 0),
    new Twig_Node_Expression_Constant(false, 0),
    new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 0), 0),
  ), array(), 0);
  $else = null;
  $node = new Twig_Node_If($t, $else, 0);
  $tests[] = array(
    $node,
    <<<EOF
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, 0),
    new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 0), 0),
  ), array(), 0);
  $else = new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 0), 0);
  $node = new Twig_Node_If($t, $else, 0);
  $tests[] = array(
    $node,
    <<<EOF
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;
}