mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
19 lines
374 B
PHP
19 lines
374 B
PHP
<?php
|
|
|
|
namespace PhpParser\ErrorHandler;
|
|
|
|
use PhpParser\Error;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ThrowingTest extends TestCase
|
|
{
|
|
/**
|
|
* @expectedException \PhpParser\Error
|
|
* @expectedExceptionMessage Test
|
|
*/
|
|
public function testHandleError() {
|
|
$errorHandler = new Throwing();
|
|
$errorHandler->handleError(new Error('Test'));
|
|
}
|
|
}
|