donation/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php
2020-11-23 15:46:19 +05:30

14 lines
209 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionTest extends TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}