IOP-Patho/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnota...

12 lines
241 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
class CoverageMethodOneLineAnnotationTest extends PHPUnit_Framework_TestCase
{
/** @covers CoveredClass::publicMethod */
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}