astrXbian/www/multitube/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/ThrowingTest.php
2021-03-20 01:33:02 +01:00

16 lines
360 B
PHP

<?php
namespace PhpParser\ErrorHandler;
use PhpParser\Error;
class ThrowingTest extends \PHPUnit_Framework_TestCase {
/**
* @expectedException \PhpParser\Error
* @expectedExceptionMessage Test
*/
public function testHandleError() {
$errorHandler = new Throwing();
$errorHandler->handleError(new Error('Test'));
}
}