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