Files
ExpenseCount/exp/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNothingTest.php
2026-06-25 13:03:45 +06:00

14 lines
258 B
PHP

<?php
class CoverageNothingTest extends PHPUnit_Framework_TestCase
{
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}