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

class CoverageNamespacedFunctionTest extends TestCase
{
    /**
     * @covers foo\func()
     */
    public function testFunc()
    {
        foo\func();
    }
}