Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Issue74Test.php « 74 « GitHub « Regression « tests « phpunit « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72f35928a960790bfb4cd4fc5ff5abb66df8b2d8 (plain)
1
2
3
4
5
6
7
8
9
<?php
class Issue74Test extends PHPUnit_Framework_TestCase
{
    public function testCreateAndThrowNewExceptionInProcessIsolation()
    {
        require_once __DIR__ . '/NewException.php';
        throw new NewException('Testing GH-74');
    }
}