Files
panti-asuhan-backend/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php
2023-07-14 11:32:46 +08:00

14 lines
258 B
PHP
Executable File

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