1<?php
2class Issue74Test extends PHPUnit_Framework_TestCase
3{
4    public function testCreateAndThrowNewExceptionInProcessIsolation()
5    {
6        require_once __DIR__ . '/NewException.php';
7        throw new NewException('Testing GH-74');
8    }
9}
10