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

Issue2731Test.php « 2731 « GitHub « Regression « tests « phpunit « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d1e6d3cd18623830e588af9a6c506543963e5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class Issue2731Test extends PHPUnit\Framework\TestCase
{
    public function testOne()
    {
        $this->expectException(Exception::class);
        $this->expectExceptionMessage('');

        throw new Exception('message');
    }
}