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

Issue1437Test.php « 1437 « GitHub « Regression « tests « phpunit « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bff4b205ac7eaab230cef4f8167e0af995709a92 (plain)
1
2
3
4
5
6
7
8
9
<?php
class Issue1437Test extends PHPUnit_Framework_TestCase
{
    public function testFailure()
    {
        ob_start();
        $this->assertTrue(false);
    }
}