Files
Document-Management-System-…/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php
2021-04-07 19:25:18 -04:00

14 lines
222 B
PHP

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