4 * This file is part of Twig.
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 class Twig_Tests_Node_Expression_Unary_PosTest
extends Twig_Test_NodeTestCase
15 * @covers Twig_Node_Expression_Unary_Pos::__construct
17 public function testConstructor()
19 $expr = new Twig_Node_Expression_Constant(1, 1);
20 $node = new Twig_Node_Expression_Unary_Pos($expr, 1);
22 $this->assertEquals($expr, $node->getNode('node'));
26 * @covers Twig_Node_Expression_Unary_Pos::compile
27 * @covers Twig_Node_Expression_Unary_Pos::operator
28 * @dataProvider getTests
30 public function testCompile($node, $source, $environment = null)
32 parent
::testCompile($node, $source, $environment);
35 public function getTests()
37 $node = new Twig_Node_Expression_Constant(1, 1);
38 $node = new Twig_Node_Expression_Unary_Pos($node, 1);