Mercurial > hg > isophonics-drupal-site
view vendor/symfony/phpunit-bridge/Tests/DeprecationErrorHandler/disabled.phpt @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line source
--TEST-- Test DeprecationErrorHandler in weak mode --FILE-- <?php putenv('SYMFONY_DEPRECATIONS_HELPER=disabled'); 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'; echo (int) set_error_handler('var_dump'); echo (int) class_exists('Symfony\Bridge\PhpUnit\DeprecationErrorHandler', false); ?> --EXPECTF-- 00