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

NamespaceCoverageCoversClassPublicTest.php « _files « tests « php-code-coverage « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45f583b7777654879c33f74a39ce0fc28fee59bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * @coversDefaultClass \Foo\CoveredClass
 */
class NamespaceCoverageCoversClassPublicTest extends PHPUnit_Framework_TestCase
{
    /**
     * @covers ::publicMethod
     */
    public function testSomething()
    {
        $o = new Foo\CoveredClass;
        $o->publicMethod();
    }
}