Mercurial > hg > isophonics-drupal-site
view vendor/symfony/phpunit-bridge/Tests/DeprecationErrorHandler/weak.phpt @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
--TEST-- Test DeprecationErrorHandler in weak mode --FILE-- <?php putenv('SYMFONY_DEPRECATIONS_HELPER=weak'); putenv('ANSICON'); putenv('ConEmuANSI'); putenv('TERM'); $vendor = __DIR__; while (!file_exists($vendor.'/vendor')) { $vendor = dirname($vendor); } define('PHPUNIT_COMPOSER_INSTALL', $vendor.'/vendor/autoload.php'); require PHPUNIT_COMPOSER_INSTALL; require_once __DIR__.'/../../bootstrap.php'; @trigger_error('root deprecation', E_USER_DEPRECATED); class FooTestCase { public function testLegacyFoo() { @trigger_error('silenced foo deprecation', E_USER_DEPRECATED); trigger_error('unsilenced foo deprecation', E_USER_DEPRECATED); } } $foo = new FooTestCase(); $foo->testLegacyFoo(); ?> --EXPECTF-- Unsilenced deprecation notices (1) Legacy deprecation notices (1) Other deprecation notices (1)