Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php
<?php
/**
 * @coversDefaultClass \NamespaceOne
 * @coversDefaultClass \AnotherDefault\Name\Space\Does\Not\Work
 */
class CoverageTwoDefaultClassAnnotations
{
   
/**
     * @covers Foo\CoveredClass::<public>
     */
   
public function testSomething()
    {
       
$o = new Foo\CoveredClass;
       
$o->publicMethod();
    }

}