FatalTest.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/phpunit/tests/_files/FatalTest.phpView source
<?php
class FatalTest extends PHPUnit_Framework_TestCase {
public function testFatalError() {
if (extension_loaded('xdebug')) {
xdebug_disable();
}
eval('class FatalTest {}');
}
}