Current File : /home/itiffy/public_html/vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php
<?php
use PHPUnit\Framework\TestCase;
class Issue74Test extends TestCase
{
public function testCreateAndThrowNewExceptionInProcessIsolation()
{
require_once __DIR__ . '/NewException.php';
throw new NewException('Testing GH-74');
}
}