You are here

FatalTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/FatalTest.php

File

vendor/phpunit/phpunit/tests/_files/FatalTest.php
View source
<?php

class FatalTest extends PHPUnit_Framework_TestCase {
  public function testFatalError() {
    if (extension_loaded('xdebug')) {
      xdebug_disable();
    }
    eval('class FatalTest {}');
  }

}

Classes

Namesort descending Description
FatalTest