drupal-civicrm/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/ThrowingTest.php

16 lines
360 B
PHP
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?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'));
}
}