ORIENT/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParentheses...

14 lines
222 B
PHP
Raw Normal View History

2021-04-08 08:08:59 +00:00
<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionParenthesesTest extends TestCase
{
/**
* @covers ::globalFunction()
*/
public function testSomething()
{
globalFunction();
}
}