drupal-civicrm/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/ThrowingTest.php
2018-01-14 13:10:16 +00: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'));
}
}