| Path : /var/www/html/solarwindia/vendor/phpunit/php-code-coverage/tests/_files/ |
| Current File : /var/www/html/solarwindia/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php |
<?php
use PHPUnit\Framework\TestCase;
class CoverageNothingTest extends TestCase
{
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}