Sindbad~EG File Manager

Current Path : /proc/self/cwd/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/
Upload File :
Current File : //proc/self/cwd/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/CollectingTest.php

<?php declare(strict_types=1);

namespace PhpParser\ErrorHandler;

use PhpParser\Error;
use PHPUnit\Framework\TestCase;

class CollectingTest extends TestCase
{
    public function testHandleError() {
        $errorHandler = new Collecting();
        $this->assertFalse($errorHandler->hasErrors());
        $this->assertEmpty($errorHandler->getErrors());

        $errorHandler->handleError($e1 = new Error('Test 1'));
        $errorHandler->handleError($e2 = new Error('Test 2'));
        $this->assertTrue($errorHandler->hasErrors());
        $this->assertSame([$e1, $e2], $errorHandler->getErrors());

        $errorHandler->clearErrors();
        $this->assertFalse($errorHandler->hasErrors());
        $this->assertEmpty($errorHandler->getErrors());
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists