[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.142.114.145: ~ $
<?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\AndBinary;
use Twig\Node\Expression\ConstantExpression;
use Twig\Test\NodeTestCase;

class AndTest extends NodeTestCase
{
    public function testConstructor()
    {
        $left = new ConstantExpression(1, 1);
        $right = new ConstantExpression(2, 1);
        $node = new AndBinary($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 AndBinary($left, $right, 1);

        return [
            [$node, '(1 && 2)'],
        ];
    }
}

Filemanager

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