Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php
<?php
use PHPUnit\Framework\TestCase;

class
NamespaceCoverageNotProtectedTest extends TestCase
{
   
/**
     * @covers Foo\CoveredClass::<!protected>
     */
   
public function testSomething()
    {
       
$o = new Foo\CoveredClass;
       
$o->publicMethod();
    }
}