You are here

public function Issue578Test::testNoticesDoublePrintStackTrace in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Regression/578/Issue578Test.php \Issue578Test::testNoticesDoublePrintStackTrace()

File

vendor/phpunit/phpunit/tests/Regression/578/Issue578Test.php, line 4

Class

Issue578Test

Code

public function testNoticesDoublePrintStackTrace() {
  $this
    ->iniSet('error_reporting', E_ALL | E_NOTICE);
  trigger_error('Stack Trace Test Notice', E_NOTICE);
}