jb-data.de/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php
2025-08-11 22:23:30 +02:00

13 lines
222 B
PHP

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