Current File : /home/itiffy/public_html/vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php
<?php
use PHPUnit\Framework\TestCase;
class NamespaceCoveragePublicTest extends TestCase
{
/**
* @covers Foo\CoveredClass::<public>
*/
public function testSomething()
{
$o = new Foo\CoveredClass;
$o->publicMethod();
}
}