Current File : /home/itiffy/public_html/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php
<?php
use PHPUnit\Framework\TestCase;

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