1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/test/PhpParser/ErrorHandler/ThrowingTest.php

17 lines
395 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace PhpParser\ErrorHandler;
use PhpParser\Error;
2017-04-27 18:14:07 +02:00
use PHPUnit\Framework\TestCase;
2017-04-27 18:14:07 +02:00
class ThrowingTest extends TestCase
{
public function testHandleError() {
$this->expectException(Error::class);
$this->expectExceptionMessage('Test');
$errorHandler = new Throwing();
$errorHandler->handleError(new Error('Test'));
}
2017-04-27 18:14:07 +02:00
}