BBnepal-Accounts/hostel/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php
Sampanna Rimal 9cd05ef3cb commitall
2024-07-10 18:28:19 +05:45

14 lines
258 B
PHP

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