You are here

public function Twig_Tests_Node_IfTest::getTests in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/Node/IfTest.php \Twig_Tests_Node_IfTest::getTests()

Overrides Twig_Test_NodeTestCase::getTests

File

vendor/twig/twig/test/Twig/Tests/Node/IfTest.php, line 31

Class

Twig_Tests_Node_IfTest

Code

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;
}