You are here

public function Twig_Tests_Node_Expression_Unary_PosTest::testConstructor in Zircon Profile 8

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

File

vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/PosTest.php, line 14

Class

Twig_Tests_Node_Expression_Unary_PosTest

Code

public function testConstructor() {
  $expr = new Twig_Node_Expression_Constant(1, 1);
  $node = new Twig_Node_Expression_Unary_Pos($expr, 1);
  $this
    ->assertEquals($expr, $node
    ->getNode('node'));
}