canyin-project/ybcy/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php

14 lines
209 B
PHP
Raw Normal View History

2024-11-01 16:07:54 +08:00
<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionTest extends TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}