BBnepal-Accounts/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnotationTest.php

12 lines
241 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?php
class CoverageMethodOneLineAnnotationTest extends PHPUnit_Framework_TestCase
{
/** @covers CoveredClass::publicMethod */
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}