You are here

public function Twig_Tests_Node_Expression_Binary_AndTest::testConstructor in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AndTest.php \Twig_Tests_Node_Expression_Binary_AndTest::testConstructor()

File

vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AndTest.php, line 14

Class

Twig_Tests_Node_Expression_Binary_AndTest

Code

public function testConstructor() {
  $left = new Twig_Node_Expression_Constant(1, 1);
  $right = new Twig_Node_Expression_Constant(2, 1);
  $node = new Twig_Node_Expression_Binary_And($left, $right, 1);
  $this
    ->assertEquals($left, $node
    ->getNode('left'));
  $this
    ->assertEquals($right, $node
    ->getNode('right'));
}