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

CoverageNoneTest.php « _files « tests « phpunit « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b414c2ef08ef39f6045fcdc31c5783dc30df204 (plain)
1
2
3
4
5
6
7
8
9
<?php
class CoverageNoneTest extends PHPUnit_Framework_TestCase
{
    public function testSomething()
    {
        $o = new CoveredClass;
        $o->publicMethod();
    }
}