Server_AccessControl/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php
2020-10-06 14:27:47 +07:00

14 lines
209 B
PHP

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