<?php namespace Twig\Tests\Node\Expression\Binary; /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Twig\Node\Expression\Binary\SubBinary; use Twig\Node\Expression\ConstantExpression; use Twig\Test\NodeTestCase; class SubTest extends NodeTestCase { public function testConstructor() { $left = new ConstantExpression(1, 1); $right = new ConstantExpression(2, 1); $node = new SubBinary($left, $right, 1); $this->assertEquals($left, $node->getNode('left')); $this->assertEquals($right, $node->getNode('right')); } public function getTests() { $left = new ConstantExpression(1, 1); $right = new ConstantExpression(2, 1); $node = new SubBinary($left, $right, 1); return [ [$node, '(1 - 2)'], ]; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
AddTest.php | File | 966 B | 0644 |
|
AndTest.php | File | 967 B | 0644 |
|
ConcatTest.php | File | 978 B | 0644 |
|
DivTest.php | File | 966 B | 0644 |
|
FloorDivTest.php | File | 999 B | 0644 |
|
ModTest.php | File | 966 B | 0644 |
|
MulTest.php | File | 966 B | 0644 |
|
OrTest.php | File | 963 B | 0644 |
|
SubTest.php | File | 966 B | 0644 |
|