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

13 lines
231 B
PHP

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