You are here

Issue74Test.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php

File

vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php
View source
<?php

class Issue74Test extends PHPUnit_Framework_TestCase {
  public function testCreateAndThrowNewExceptionInProcessIsolation() {
    require_once __DIR__ . '/NewException.php';
    throw new NewException('Testing GH-74');
  }

}

Classes

Namesort descending Description
Issue74Test